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.
1 parent 0877210 commit 40cad8eCopy full SHA for 40cad8e
1 file changed
.github/workflows/GithubActionTests.yml
@@ -39,7 +39,8 @@ jobs:
39
eval "$(conda shell.bash hook)"
40
conda activate bioconda
41
if git diff --name-only origin/master...HEAD | grep -vE ^docs; then
42
- py.test --durations=0 test/ -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}'
+ # Docker tests are run in the build-images.yml workflow
43
+ py.test --durations=0 test/ -k "not docker" -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}'
44
else
45
echo "Skipping pytest - only docs modified"
46
fi
0 commit comments