diff options
author | 2022-05-31 14:34:18 -0700 | |
---|---|---|
committer | 2022-05-31 14:34:18 -0700 | |
commit | 4c58f8bd5db220223c45955dfd01bcf496e46cdd (patch) | |
tree | 54a90d28d669b02f4b41bbb2f061896541eb8356 | |
parent | CI: tag all images with version (diff) |
CI: fix container entrypoint when running tests
-rw-r--r-- | .github/workflows/test.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a9fcade..30e6ba3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -41,8 +41,9 @@ jobs: export IMAGE_SUFFIX='-venv:${{ inputs.version }}' docker-compose run \ --rm -T -e COVERAGE_DATAFILE=.coverage.${{ matrix.os }} \ + --entrypoint coverage \ snekbox \ - coverage run -m unittest + run -m unittest # Upload it so the coverage from all matrix jobs can be combined later. - name: Upload coverage data |