Skip to content

Commit

Permalink
Update test running and coverage actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gwax committed Jan 1, 2023
1 parent 3bab6c0 commit ba77d47
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- "3.11"
name: Python ${{ matrix.python-version }} pytest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
cache: pip
Expand All @@ -29,7 +29,10 @@ jobs:
test_requirements.txt
- name: Install requirements
run: pip install -r requirements.txt -r test_requirements.txt
run: >-
pip install
-r requirements.txt
-r test_requirements.txt
- name: Execute pytest
run: pytest tests/
Expand Down

0 comments on commit ba77d47

Please sign in to comment.