Skip to content

Commit

Permalink
Fix the directory referenced in the integration-tests job
Browse files Browse the repository at this point in the history
Also fixed the context in the examples docker file
  • Loading branch information
leeturner committed Dec 16, 2024
1 parent 141a39b commit d03b1bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:

- name: Integration Tests
run: |
cd examples/
cd examples/intro/
docker compose build overview_srv
docker compose run overview_srv pytest --tb=short
4 changes: 2 additions & 2 deletions examples/intro/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"
services:
overview_srv:
build:
context: ../
context: ../../
dockerfile: examples/intro/Dockerfile
ports:
- "5001:5001"
Expand All @@ -19,7 +19,7 @@ services:

products_srv:
build:
context: ../
context: ../../
dockerfile: examples/intro/Dockerfile
ports:
- "5002:5002"
Expand Down

0 comments on commit d03b1bb

Please sign in to comment.