Skip to content

Commit

Permalink
CI: install nose in a separate step.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilk committed Feb 19, 2024
1 parent 969e15c commit 4f2eb29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
dpkg-parsechangelog -ldoc/changelog --all 2>&1 >/dev/null | { ! grep .; }
private/check-rst
- name: run tests
- name: install nose
run: |
# work-around for <https://github.com/nose-devs/nose/issues/1115>:
python -m pip install --upgrade 'setuptools<58'
Expand All @@ -91,6 +91,8 @@ jobs:
if ! python -c 'import imp'; then
python -m pip install zombie-imp
fi
- name: run tests
run: |
python tests/run-tests -v
- name: check test coverage
run: |
Expand Down

0 comments on commit 4f2eb29

Please sign in to comment.