Skip to content

Commit ee76bbf

Browse files
committed
short cut
Signed-off-by: Marcel Bargull <[email protected]>
1 parent 7841f56 commit ee76bbf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/GithubActionTests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
matrix:
1313
py_test_marker:
1414
- not long_running_1 and not long_running_2
15-
- long_running_1
16-
- long_running_2
1715

1816
steps:
1917
- uses: actions/checkout@v4
@@ -46,7 +44,7 @@ jobs:
4644
eval "$(conda shell.bash hook)"
4745
conda activate bioconda
4846
if git diff --name-only origin/master...HEAD | grep -vE ^docs; then
49-
py.test --durations=0 test/ -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}'
47+
py.test --durations=0 test/ -v --log-level=DEBUG --tb=native -m '${{ matrix.py_test_marker }}' -k test_pkg_test_conda_package_format
5048
else
5149
echo "Skipping pytest - only docs modified"
5250
fi
@@ -77,7 +75,7 @@ jobs:
7775
eval "$(conda shell.bash hook)"
7876
conda activate bioconda
7977
if git diff --name-only origin/master...HEAD | grep -vE ^docs; then
80-
py.test --durations=0 test/ -v --log-level=DEBUG -k "not docker" --tb=native
78+
py.test --durations=0 test/ -v --log-level=DEBUG -k "not docker" --tb=native -k test_pkg_test_conda_package_format
8179
else
8280
echo "Skipping pytest - only docs modified"
8381
fi

0 commit comments

Comments
 (0)