Skip to content

Commit b5e71b4

Browse files
committed
Add debug
1 parent 76c0a9a commit b5e71b4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/cicd.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
17+
# python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
18+
python-version: ['3.9']
1819

1920
timeout-minutes: 20
2021

@@ -42,7 +43,8 @@ jobs:
4243
uses: nyurik/action-setup-postgis@v2
4344

4445
- name: Run test suite
45-
run: uv run pytest --cov stac_fastapi.pgstac --cov-report xml --cov-report term-missing
46+
# run: uv run pytest --cov stac_fastapi.pgstac --cov-report xml --cov-report term-missing
47+
run: uv run pytest --capture=no --cov stac_fastapi.pgstac --cov-report xml --cov-report term-missing
4648

4749
validate:
4850
runs-on: ubuntu-latest

tests/api/test_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ async def test_app_collection_fields_extension(
278278
resp = await app_client.get("/collections", params={"fields": ",".join(fields)})
279279
assert resp.status_code == 200
280280
resp_json = resp.json()
281+
print(resp_json)
281282
resp_collections = resp_json["collections"]
282283
assert len(resp_collections) > 0
283284
for collection in resp_collections:

0 commit comments

Comments
 (0)