Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Dec 16, 2024
1 parent 5a267d1 commit 88437a2
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
python-version: '3.11'

- name: Build api image
run: docker compose build -d api
run: docker compose build api

- name: Launch api
run: docker compose up -d api
env:
TITILER_OPENEO_STAC_API_URL=https://stac.eoapi.dev
TITILER_OPENEO_SERVICE_STORE_URL=services/eoapi.json
TITILER_OPENEO_STAC_API_URL: https://stac.eoapi.dev
TITILER_OPENEO_SERVICE_STORE_URL: services/eoapi.json

- name: Sleep for 10 seconds
run: sleep 10s
Expand All @@ -89,9 +89,12 @@ jobs:
cd openeo-test-suite
python -m pytest src/openeo_test_suite/tests/collections --openeo-backend-url=http://0.0.0.0:8081
env:
OPENEO_AUTH_METHOD=basic
OPENEO_AUTH_BASIC_USERNAME=anonymous
OPENEO_AUTH_BASIC_PASSWORD=password
OPENEO_AUTH_METHOD: basic
OPENEO_AUTH_BASIC_USERNAME: anonymous
OPENEO_AUTH_BASIC_PASSWORD: password

- name: Stop services
run: docker compose stop

# publish:
# needs: [tests]
Expand Down

0 comments on commit 88437a2

Please sign in to comment.