diff --git a/.github/workflows/client-side.yml b/.github/workflows/client-side.yml index 2c6e12de2..9faa785b5 100644 --- a/.github/workflows/client-side.yml +++ b/.github/workflows/client-side.yml @@ -30,7 +30,6 @@ jobs: virtualenvs-in-project: true installer-parallel: true - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction - name: Run test scripts - run: poetry run pytest --tb=native -k test_optional_dependencies + run: poetry run pytest tests/test_optional_dependencies.py diff --git a/tox.ini b/tox.ini index 8bbf4160d..bd2768fe0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,3 +1,7 @@ +# +# Tox script to test installation without optional dependencies +# + [tox] envlist = py10