Skip to content

Commit

Permalink
docs: fix CI (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik authored Sep 4, 2024
1 parent fabd5ff commit 33aeeb2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Test
run: >
bash scripts/test.sh -vv
-m "(slow and ($ALL_PYTEST_MARKERS)) or ($ALL_PYTEST_MARKERS)"
-m "(slow and (${{env.ALL_PYTEST_MARKERS}})) or (${{env.ALL_PYTEST_MARKERS}})"
env:
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}-${{ matrix.pydantic-version }}
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}-${{ matrix.pydantic-version }}
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Test
run: >
bash scripts/test.sh
-m "(slow and ($ALL_PYTEST_MARKERS)) or ($ALL_PYTEST_MARKERS)"
-m "(slow and (${{env.ALL_PYTEST_MARKERS}})) or (${{env.ALL_PYTEST_MARKERS}})"
env:
COVERAGE_FILE: coverage/.coverage.orjson
CONTEXT: orjson
Expand All @@ -135,9 +135,9 @@ jobs:
python -m pip install uv
uv pip install --system .[optionals,testing]
- name: Test
run: |
run: >
bash scripts/test.sh
-m "(slow and ($ALL_PYTEST_MARKERS)) or ($ALL_PYTEST_MARKERS)"
-m "(slow and (${{env.ALL_PYTEST_MARKERS}})) or (${{env.ALL_PYTEST_MARKERS}})"
test-windows-latest:
if: github.event.pull_request.draft == false
Expand All @@ -156,7 +156,7 @@ jobs:
- name: Test
run: >
bash scripts/test.sh
-m "(slow and ($ALL_PYTEST_MARKERS)) or ($ALL_PYTEST_MARKERS)"
-m "(slow and (${{env.ALL_PYTEST_MARKERS}})) or (${{env.ALL_PYTEST_MARKERS}})"
test-kafka-smoke:
if: github.event.pull_request.draft == false
Expand Down

0 comments on commit 33aeeb2

Please sign in to comment.