Skip to content

Commit

Permalink
Also test without zlib-ng and isal
Browse files Browse the repository at this point in the history
  • Loading branch information
rhpvorderman committed Dec 26, 2023
1 parent 0110e27 commit d018b77
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@ jobs:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9"]
optional-deps: [true]
with-python-isal: [true]
with-libs: [true]
include:
- os: macos-latest
python-version: "3.10"
optional-deps: true
- os: ubuntu-20.04
python-version: "3.10"
with-python-isal: false
with-libs: false
optional-deps: false
- os: ubuntu-20.04
python-version: "3.10"
with-python-isal: false
with-libs: false
optional-deps: true
- os: ubuntu-20.04
python-version: "3.10"
optional-deps: false
with-python-isal: false
with-libs: false
with-zstandard: true
- os: windows-latest
python-version: "3.10"
Expand All @@ -77,10 +77,10 @@ jobs:
run: python -m pip install tox
- name: Test
run: tox -e py
if: matrix.with-python-isal
- name: Test without python-isal
run: tox -e no-isal
if: true && !matrix.with-python-isal
if: matrix.with-libs
- name: Test without python-isal and python-zlib-ng
run: tox -e no-libs
if: true && !matrix.with-libs
- name: Test with zstandard
if: matrix.with-zstandard
run: tox -e zstd
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ deps =
{[testenv]deps}
zstandard

[testenv:no-isal]
[testenv:no-libs]
commands=
pip uninstall -y isal
pip uninstall -y isal zlib-ng
{[testenv]commands}

[testenv:black]
Expand Down

0 comments on commit d018b77

Please sign in to comment.