We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec41f7 commit 4db2c05Copy full SHA for 4db2c05
.github/workflows/e2e_test.yml
@@ -16,19 +16,11 @@ jobs:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
19
- - name: Build and start the services
+ - name: Run E2E test for all services
20
run: |
21
cd ./Project
22
docker compose build
23
docker compose up -d
24
-
25
- - name: Run E2E Test
26
- run: |
27
- cd ./Project/tests
28
chmod +x e2e.sh
29
./e2e.sh
30
31
- - name: Stop the services
32
33
- cd ./Project
34
docker compose down
Project/backend/pyproject.toml
@@ -18,6 +18,7 @@ numpy = "^1.17.3"
scikit-learn = "^1.2.0"
pytest = "^6.2.5"
+pytest-asyncio = "^0.16.0"
testcontainers = "^3.0.0"
[tool.poetry.dev-dependencies]
Project/tests/e2e.sh Project/e2e.sh
0 commit comments