From 1fb7c9a4373f003e4fc0eabebc80f58034ba162c Mon Sep 17 00:00:00 2001 From: "Corey R. Randall" Date: Tue, 31 Dec 2024 02:18:38 -0700 Subject: [PATCH] Try tox from conda --- .github/workflows/test-sundials.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-sundials.yml b/.github/workflows/test-sundials.yml index e6f4cd6..a42fd43 100644 --- a/.github/workflows/test-sundials.yml +++ b/.github/workflows/test-sundials.yml @@ -183,7 +183,9 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install --upgrade setuptools - python -m pip install --upgrade tox + + - name: Get tox + run: conda install tox - name: List info run: | @@ -192,6 +194,6 @@ jobs: - name: Run tests working-directory: packages/scikits-odes-sundials - run: tox || tox --recreate + run: tox env: TOXENV: ${{ matrix.tox-env }}