Skip to content

Commit

Permalink
ci config changes aaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuyukai committed Jan 25, 2024
1 parent f1077fd commit 6f62c25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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] }}

Expand Down

0 comments on commit 6f62c25

Please sign in to comment.