From 6b57358ac8047fd65d36992a8a7350c2e76ba82f Mon Sep 17 00:00:00 2001 From: Marcel Bargull Date: Mon, 6 May 2024 14:32:15 +0200 Subject: [PATCH] short cut Signed-off-by: Marcel Bargull --- .github/workflows/GithubActionTests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/GithubActionTests.yml b/.github/workflows/GithubActionTests.yml index c4577ebddc..9bf84c4d9a 100644 --- a/.github/workflows/GithubActionTests.yml +++ b/.github/workflows/GithubActionTests.yml @@ -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 @@ -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 @@ -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