summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-18 14:53:12 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-19 12:51:25 -0500
commitb71959fc9232296463c9771ae8db7cb099f65704 (patch)
treec9aead272d74ce370b0d2c8885505312f76329e3 /.github
parented520b6e969c8860ad9c7488fdb6ca8100cc5862 (diff)
downloadrequests-cache-b71959fc9232296463c9771ae8db7cb099f65704.tar.gz
Update changelog and contributors
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4ad4fd3..05fa56a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -49,8 +49,8 @@ jobs:
- name: Install dependencies
run: pip install ".[dev]"
- # Latest python version: Run unit tests with coverage and send to coveralls
- - name: Run unit tests with code coverage report
+ # Latest python version: Run tests with coverage and send to coveralls
+ - name: Run tests with code coverage report
if: ${{ matrix.python-version == env.LATEST_PY_VERSION }}
# Run unit tests first (and with multiprocessing) to fail quickly if there are issues
run: |
@@ -62,8 +62,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github
- # All other python versions: just run unit tests
- - name: Run unit tests
+ # All other python versions: just run tests
+ - name: Run tests
if: ${{ matrix.python-version != env.LATEST_PY_VERSION }}
run: |
pytest --numprocesses=auto tests/unit