We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4455a8b commit c4ae0c3Copy full SHA for c4ae0c3
.github/workflows/python-package.yml
@@ -53,4 +53,4 @@ jobs:
53
run: |
54
set -x
55
echo $(pwd)
56
- bash test/scripts/test.sh gh
+ YUNTA_TEST=1 bash test/scripts/test.sh gh
yunta/interaction_utils.py
@@ -32,7 +32,7 @@
32
33
_INTERACTION_FILE_LOADED: bool = False
34
ORGANISM_INTERACTIONS: dict = {}
35
-TEST_MODE: str = os.environ.get("YUNTA_TEST", "0")
+TEST_MODE: str = str(os.environ.get("YUNTA_TEST", "0"))
36
37
def _name_normalizer(x: Iterable[str]):
38
x = [str(name).split("subsp.")[0].split("sp.")[0].split("(")[0].strip("'").strip().casefold() for name in x]
0 commit comments