diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 389f5c1..cc7a0a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -22,9 +22,9 @@ 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 @@ -32,9 +32,9 @@ 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 -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: