From 142fbad370ebcdd54ac712169956350d6734a738 Mon Sep 17 00:00:00 2001 From: David Nicholson Date: Wed, 11 Oct 2023 20:37:46 -0400 Subject: [PATCH] Fix ci-linux.yml to *not* run tests with nox because our tests take too long to run multiple times in a single Actions. There might be some way to do this with nox using whatever the installed Python is but I'm just going with this for now. --- .github/workflows/ci-linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index cff3d78e4..36ebefe31 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -22,6 +22,7 @@ jobs: run: | nox -s test-data-download-source nox -s test-data-download-generated-ci - nox -s coverage --verbose + pip install .[test] + pytest --cov=./ --cov-report=xml - name: upload code coverage uses: codecov/codecov-action@v3