Skip to content

Commit 35d6771

Browse files
committed
Resolves some ordering issues
1 parent 3d9fbcf commit 35d6771

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

tests/docker_actions/test_docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from os import chdir
22

33
import pytest
4+
from od_compiler.util.docker_actions import compileOD
45

56
from docker.errors import BuildError
6-
from od_compiler.util.docker_actions import compileOD
77

88

99
@pytest.mark.order(index=-1)

tests/git_actions/test_git.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import pytest
2-
32
from od_compiler.util.git_actions import updateOD
43

54

tests/main/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import pytest
55
from flask.testing import FlaskClient
6-
76
from od_compiler import create_app
87

98

tests/utilities/test_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
2-
32
from od_compiler.util.utilities import cleanOldRuns
43
from od_compiler.util.utilities import stageBuild
4+
55
from tests.utilities import runs_list
66

77

tests/utilities/test_logs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from pathlib import Path
22

33
import pytest
4-
54
from od_compiler.util.utilities import splitLogs
65
from od_compiler.util.utilities import writeOutput
76

wsgi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from logging import DEBUG
22
from logging import getLogger
33

4-
from werkzeug.middleware.proxy_fix import ProxyFix
5-
64
from od_compiler import create_app
5+
from werkzeug.middleware.proxy_fix import ProxyFix
76

87

98
def main():

0 commit comments

Comments
 (0)