From eb68cbf56e9ebef046e4fc14638b601fa2341e4e Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 17 Dec 2021 19:50:30 +0000 Subject: [PATCH] also run tests without cattrs to check everything else works --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f535951f..4f90292a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,11 @@ jobs: run: pip install tox coverage - name: Run Tox run: tox -e py-cov + - name: Re-run Tox (without cattrs) + if: startsWith(matrix.platform, 'ubuntu-latest') && startsWith(matrix.python-version, '3.10') + run: | + .tox/py-cov/bin/pip uninstall -y cattrs + tox -e py-cov --skip-pkg-install - name: Produce coverage files run: | coverage combine