Skip to content

Commit

Permalink
chore: Run the test suite directly through pytest in the .github/work…
Browse files Browse the repository at this point in the history
…flows/main.yml file.
  • Loading branch information
gkapfham committed Jan 28, 2025
1 parent 0e99d81 commit 23e8f1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ jobs:

test:
# Test uses a strategy matrix to ensure that sufficient platform test
# coverage is reached. For this configuration, we run the latest Ubuntu
# image with Python 3.6 and 3.9, while also including MacOS + Python 3.8 and
# Windows + Python 3.7. With this spread, we achieve testing of four
# coverage is reached. With this spread, we achieve testing of four
# different Python versions and three operating systems without running the
# full twelve possible combinations, greatly reducing load and usage.
name: Test
Expand Down Expand Up @@ -79,7 +77,9 @@ jobs:
poetry env info
- name: Install dependencies
run: poetry install --no-interaction --no-ansi
- name: Execute tests
- name: Run the test suite
run: poetry run pytest
- name: Collect test coverage
# We need to ensure that the cover-win script is run for Windows, so
# this Action runs different commands based on the runner's operating
# system.
Expand Down

0 comments on commit 23e8f1e

Please sign in to comment.