We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8cc5e commit 1f6bc42Copy full SHA for 1f6bc42
tests/atlas/test_atlas.py
@@ -20,6 +20,7 @@
20
from dance import logger
21
22
23
+@pytest.mark.skip(reason="Skipping test due to sensitive data")
24
def test_main():
25
# Construct test parameters with a sample Brain tissue dataset
26
class Args:
tox.ini
@@ -66,5 +66,5 @@ commands =
66
python -c "import dance; print(f'Successfully installed dance {dance.__version__}')"
67
68
# Run tests
69
- test: pytest tests/ -k "not test_bench" -v --ignore=tests/test_atlas.py #sensitive to atlas data
70
- lightbenchtest: pytest tests/ -k test_bench -v --ignore=tests/test_atlas.py #sensitive to atlas data
+ test: pytest tests/ -k "not test_bench" -v
+ lightbenchtest: pytest tests/ -k test_bench -v
0 commit comments