From d018b7707150fe47aecc3f82238d0196a9eff66d Mon Sep 17 00:00:00 2001 From: Ruben Vorderman Date: Tue, 26 Dec 2023 11:47:00 +0100 Subject: [PATCH] Also test without zlib-ng and isal --- .github/workflows/ci.yml | 16 ++++++++-------- tox.ini | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e321e12..7b7fe88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" @@ -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 diff --git a/tox.ini b/tox.ini index 3b2314d..6ff5513 100644 --- a/tox.ini +++ b/tox.ini @@ -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]