Skip to content

Commit d03b1bb

Browse files
committed
Fix the directory referenced in the integration-tests job
Also fixed the context in the examples docker file
1 parent 141a39b commit d03b1bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ jobs:
4444

4545
- name: Integration Tests
4646
run: |
47-
cd examples/
47+
cd examples/intro/
4848
docker compose build overview_srv
4949
docker compose run overview_srv pytest --tb=short

examples/intro/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3"
33
services:
44
overview_srv:
55
build:
6-
context: ../
6+
context: ../../
77
dockerfile: examples/intro/Dockerfile
88
ports:
99
- "5001:5001"
@@ -19,7 +19,7 @@ services:
1919

2020
products_srv:
2121
build:
22-
context: ../
22+
context: ../../
2323
dockerfile: examples/intro/Dockerfile
2424
ports:
2525
- "5002:5002"

0 commit comments

Comments
 (0)