From 482274d9d6b5fdf6edfc8063729c14cf6a91eb6d Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 1 Feb 2024 13:56:21 -0700 Subject: [PATCH] more --- .github/workflows/python-unit-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-unit-test.yml b/.github/workflows/python-unit-test.yml index ada8b76..0960ffe 100644 --- a/.github/workflows/python-unit-test.yml +++ b/.github/workflows/python-unit-test.yml @@ -77,11 +77,11 @@ jobs: # We really should either do those checks using the latest # version of python, or in every version of python case "$toxpyver" in - 27) toxenvs="${toxenvs},flake8,pylint" ;; + 27) toxenvs="${toxenvs},coveralls,flake8,pylint" ;; 36) toxenvs="${toxenvs},coveralls,black" ;; *) toxenvs="${toxenvs},coveralls" ;; esac - RUN_PYTEST_UNIT_DIR="$(realpath tests/unit)" tox -e "$toxenvs" || : + TOXENV="$toxenvs" lsr_ci_runtox - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4