Skip to content

Commit

Permalink
ci: Test without 3.12 and without --cov-report
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 6, 2024
1 parent c4d68f4 commit aad3066
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11'] # '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -22,19 +22,19 @@ jobs:
TEST_RABBIT_URL: amqp://127.0.0.1:${{ job.services.rabbitmq.ports[5672] }}
shell: bash
run: |
coverage run --append --source=yapw -m pytest --cov-report=lcov:coverage/lcov.info
coverage run --append --source=yapw -m pytest
pip install orjson
coverage run --append --source=yapw -m pytest --cov-report=lcov:coverage/lcov.info
coverage run --append --source=yapw -m pytest
pip uninstall -y orjson
- if: matrix.python-version != '3.10'
name: Test
env:
TEST_RABBIT_URL: amqp://127.0.0.1:${{ job.services.rabbitmq.ports[5672] }}
shell: bash
run: |
coverage run --append --source=yapw -m pytest --cov-report=lcov:coverage/lcov.info -W error -W ignore::ResourceWarning
coverage run --append --source=yapw -m pytest -W error -W ignore::ResourceWarning
pip install orjson
coverage run --append --source=yapw -m pytest --cov-report=lcov:coverage/lcov.info -W error -W ignore::ResourceWarning
coverage run --append --source=yapw -m pytest -W error -W ignore::ResourceWarning
pip uninstall -y orjson
- uses: coverallsapp/github-action@v2
services:
Expand Down

0 comments on commit aad3066

Please sign in to comment.