Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: riverqueue/riverqueue-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7d5d75ead83b94d66c79512447e48a627ed73a95
Choose a base ref
..
head repository: riverqueue/riverqueue-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b91a05920850f2a643d5662f505694be48433dd7
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 .github/workflows/ci.yaml
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ jobs:
run: psql --echo-errors --quiet -c '\timing off' -c "CREATE DATABASE ${TEST_DATABASE_NAME};" ${ADMIN_DATABASE_URL}

- name: river migrate-up
run: river migrate-up --database-url "$TEST_DATABASE_URL"
run: river migrate-up --database-url "$DATABASE_URL" --max-steps 5 # temporarily include max steps so tests can pass with unique fixes

- name: Test
run: rye test
@@ -109,7 +109,7 @@ jobs:
run: psql --echo-errors --quiet -c '\timing off' -c "CREATE DATABASE ${DATABASE_NAME};" ${ADMIN_DATABASE_URL}

- name: river migrate-up
run: river migrate-up --database-url "$DATABASE_URL"
run: river migrate-up --database-url "$DATABASE_URL" --max-steps 5 # temporarily include max steps so tests can pass with unique fixes

- name: Run examples
run: rye run python3 -m examples.all