We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rootpath
1 parent 46dab46 commit 4089674Copy full SHA for 4089674
mybad/tests/helper.py
@@ -3,6 +3,10 @@
3
# DEPS
4
# --------------------------------------
5
6
+import rootpath
7
+
8
+rootpath.append()
9
10
import sys
11
import os
12
import inspect
@@ -14,18 +18,14 @@
14
18
import inspecta
15
19
16
20
from os import path, environ
21
+from deepdiff import DeepDiff
22
17
23
try:
24
# NOTE on `tox` (2/2): ran into issues with `tox` raising `ncurses` error, so disabling colors when running in `tox` for now
25
from colour_runner.result import ColourTextTestResult
26
except:
27
pass
28
-from deepdiff import DeepDiff
-
-import rootpath
-rootpath.append()
29
from six import PY2, PY3, string_types
30
31
CURRENT_PATH = path.abspath(path.dirname(__file__))
0 commit comments