Skip to content

Commit 40cad8e

Browse files
committed
disable docker tests in main workflow
1 parent 0877210 commit 40cad8e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/GithubActionTests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
eval "$(conda shell.bash hook)"
4040
conda activate bioconda
4141
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 }}'
42+
# 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 }}'
4344
else
4445
echo "Skipping pytest - only docs modified"
4546
fi

0 commit comments

Comments
 (0)