Skip to content

Commit

Permalink
Improve and Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dostuffthatmatters committed Jan 19, 2024
1 parent 4270fb2 commit f76c4c8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.12
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: pip install ".[dev]"
Expand All @@ -31,5 +31,4 @@ jobs:
# run test suite
- name: Run pytests
run: |
pytest -m "quick" --verbose --cov=src tests/
pytest -m "ci" --verbose --cov=src tests/
pytest -m "quick or ci" --verbose --cov=src tests/

0 comments on commit f76c4c8

Please sign in to comment.