We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c54d1b4 commit 23e1959Copy full SHA for 23e1959
.github/scripts/rmiso.py
@@ -0,0 +1,7 @@
1
+import shutil
2
+from pathlib import Path
3
+
4
+path = Path(__file__).parent.parent / "IsoSpecPy"
5
+print(f"Removing IsoSpecPy directory at: {path}")
6
+shutil.rmtree(path, ignore_errors=True)
7
+print("Done.")
.github/workflows/run_tests.yml
@@ -36,6 +36,9 @@ jobs:
36
- name: Install package
37
run: |
38
python -m pip install .[testing]
39
+ - name: Wipe code so it wont mess up import
40
+ run: |
41
+ python .github/scripts/rmiso.py
42
- name: Test with pytest
43
working-directory: ./tests/Python
44
0 commit comments