Skip to content

Commit

Permalink
make test job always run without ext
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Dec 7, 2024
1 parent 61573c1 commit e415cf1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
dists-artifact-name: ${{ needs.pre-setup.outputs.dists-artifact-name }}

test:
name: Test
name: Run test without extension
needs:
- build-pure-python-dists # transitive, for accessing settings
- build-wheels-for-tested-arches
Expand All @@ -187,11 +187,9 @@ jobs:
experimental: [false]
include:
- pyver: pypy-3.10
no-extensions: Y
experimental: false
os: ubuntu-latest
- pyver: pypy-3.9
no-extensions: Y
experimental: false
os: ubuntu-latest
fail-fast: false
Expand Down Expand Up @@ -279,7 +277,7 @@ jobs:
shell: bash
- name: Run unittests
env:
YARL_NO_EXTENSIONS: ${{ matrix.no-extensions }}
YARL_NO_EXTENSIONS: 'Y'
run: >-
python -Im
pytest
Expand All @@ -305,7 +303,7 @@ jobs:
!cancelled()
&& failure()
env:
YARL_NO_EXTENSIONS: ${{ matrix.no-extensions }}
YARL_NO_EXTENSIONS: 'Y'
run: >- # `exit 1` makes sure that the job remains red with flaky runs
python -Im
pytest --no-cov -vvvvv --lf -rA
Expand Down

0 comments on commit e415cf1

Please sign in to comment.