Skip to content

Commit

Permalink
- try to work around wheel naming issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Mar 4, 2025
1 parent c388061 commit a14f0a8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ jobs:
# Unzip into src/ so that testrunner can find the .so files
# when we ask it to load tests from that directory. This
# might also save some build time?
unzip -n dist/zope.security-*whl -d src
ls -l dist/*whl
unzip -n dist/*.whl -d src
# Use "--pre" here because dependencies with support for this future
# Python release may only be available as pre-releases
pip install --pre -e .[test]
Expand All @@ -352,7 +353,8 @@ jobs:
# Unzip into src/ so that testrunner can find the .so files
# when we ask it to load tests from that directory. This
# might also save some build time?
unzip -n dist/zope.security-*whl -d src
ls -l dist/*whl
unzip -n dist/*.whl -d src
pip install -e .[test]
- name: Run tests with C extensions
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
Expand Down Expand Up @@ -447,7 +449,7 @@ jobs:
run: |
pip install -U wheel
pip install -U coverage[toml]
pip install -U "`ls dist/zope.security-*.whl`[docs]"
pip install -U "`ls dist/*.whl`[docs]"
- name: Build docs
env:
ZOPE_INTERFACE_STRICT_IRO: 1
Expand Down Expand Up @@ -518,7 +520,7 @@ jobs:
run: |
pip install -U wheel
pip install -U tox
pip install -U "`ls dist/zope.security-*.whl`[docs]"
pip install -U "`ls dist/*.whl`[docs]"
- name: Run release check
env:
ZOPE_INTERFACE_STRICT_IRO: 1
Expand Down

0 comments on commit a14f0a8

Please sign in to comment.