diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ad2517b..262af54 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,14 +41,14 @@ jobs: strategy: fail-fast: false matrix: - image: ["rabbitmq:latest"] + image: ["latest", "3.13-rc"] - name: "Test on AMQP server ${{ matrix.image }}" + name: "Test on RabbitMQ server ${{ matrix.image }}" runs-on: ubuntu-latest services: amqp: - image: "${{ matrix.image }}" + image: "rabbitmq:${{ matrix.image }}" ports: - 5672 @@ -77,7 +77,7 @@ jobs: run: poetry install --all-extras --no-interaction --no-ansi - name: "Run Pytest" - run: "poetry run pytest -rPx --cov" + run: 'poetry run pytest -rPx -m ""' # override all markers env: AMQP_PORT: ${{ job.services.amqp.ports[5672] }}