We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 099beb5 commit d4f9d23Copy full SHA for d4f9d23
2 files changed
Makefile.template
@@ -26,4 +26,4 @@ example-command: | $(CONDA_ENV_PYTHON)
26
27
# Check that no system packages are found in the environment.
28
test-command: | $(CONDA_ENV_PYTHON)
29
- $(IN_CONDA_ENV) python -c "import sys; assert all('/usr' not in p for p in sys.path), sys.path; print(sys.path)"
+ $(IN_CONDA_ENV) python check.py
test/check.py
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env python
2
+
3
+# Check that no system packages are found in the environment.
4
+import sys
5
+assert all('/usr' not in p for p in sys.path), sys.path
6
+print(sys.path)
0 commit comments