From b9db54cb1ece91191dc39c02f5d700f93d48cc48 Mon Sep 17 00:00:00 2001 From: aya Date: Fri, 27 Dec 2024 12:04:51 +0200 Subject: [PATCH] Using ignore instead of -m --- .github/workflows/test_common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index 5aa90046..9b66af5e 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -57,7 +57,7 @@ jobs: - name: Run tests run: | - pytest -m "not rln and not store2000" --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=9 --alluredir=allure-results-${{ matrix.shard }} + pytest --ignore=test_rln.py --ignore=test_cursor_many_msgs.py --reruns 2 --shard-id=${{ matrix.shard }} --num-shards=9 --alluredir=allure-results-${{ matrix.shard }} fi