From 8ed4679ba282432f9bdfc544428af2f5684cac0d Mon Sep 17 00:00:00 2001 From: Elias Sadek Date: Mon, 2 Dec 2024 15:27:50 +0000 Subject: [PATCH] up to date with #173 --- .github/workflows/ci-tests.yml | 4 +++- tox.ini | 6 ++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index aa0b4b6..4efe73e 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -27,4 +27,6 @@ jobs: .tox - name: Run tox - run: pipx run 'tox<4' + run: | + pip install 'tox<4' + tox -e py311-test diff --git a/tox.ini b/tox.ini index 7f7b389..01b0131 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,9 @@ [tox] requires = tox-conda -minversion = 3.15 -base_python = py311 -envlist=py{38,39,310,311} +isolated_build = True -[testenv] +[testenv:py{38,39,310,311}-test] description = invoke pytest to run automated tests deps = pytest