We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f346cb0 commit 9a1ca70Copy full SHA for 9a1ca70
1 file changed
.github/workflows/ci.yml
@@ -33,7 +33,10 @@ jobs:
33
python-version: ${{ matrix.python-version }}
34
35
# Runs the same checks locals get from scripts/ci.sh: uv sync, isort,
36
- # black, pyright, and pytest. The script runs every check and exits
37
- # non-zero if any fail, so a single red step still lists all failures.
+ # black, pyright, and pytest. `--integration` additionally runs the
+ # PostGIS/testcontainers suite (`pytest -m integration`); the ubuntu-latest
38
+ # runner ships a running Docker daemon, which testcontainers needs to boot
39
+ # the database. The script runs every check and exits non-zero if any fail,
40
+ # so a single red step still lists all failures.
41
- name: Run CI checks
- run: ./scripts/ci.sh
42
+ run: ./scripts/ci.sh --integration
0 commit comments