Skip to content

Commit

Permalink
short cut
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Bargull <[email protected]>
  • Loading branch information
mbargull committed May 6, 2024
1 parent bb1322a commit 6b57358
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/GithubActionTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
matrix:
py_test_marker:
- not long_running_1 and not long_running_2
- long_running_1
- long_running_2

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -46,7 +44,7 @@ jobs:
eval "$(conda shell.bash hook)"
conda activate bioconda
if git diff --name-only origin/master...HEAD | grep -vE ^docs; then
py.test --durations=0 test/ -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}'
py.test --durations=0 test/ -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}' -k test_pkg_test_conda_package_format
else
echo "Skipping pytest - only docs modified"
fi
Expand Down Expand Up @@ -77,7 +75,7 @@ jobs:
eval "$(conda shell.bash hook)"
conda activate bioconda
if git diff --name-only origin/master...HEAD | grep -vE ^docs; then
py.test --durations=0 test/ -v --log-level=DEBUG -k "not docker" --tb=native
py.test --durations=0 test/ -v --log-level=DEBUG -k "not docker" --tb=native -k test_pkg_test_conda_package_format
else
echo "Skipping pytest - only docs modified"
fi
Expand Down

0 comments on commit 6b57358

Please sign in to comment.