Commit 0864389
committed
Fix acceptance stage deployment and testing issues
Critical fixes for deployment action and system-test configuration:
1. Fixed deploy-docker-images action: changed 'pytest src/test/python/' to 'pytest .'
2. Fixed system-test/pyproject.toml: changed testpaths from 'src/test/python' to '.'
3. Fixed system-test dependency: downgraded httpx from 0.28.1 to 0.27.2 for pytest-httpx compatibility
These were the root causes of acceptance stage failures:
- Deploy action couldn't find tests due to old path
- pytest configuration pointed to non-existent directory
- Same httpx version conflict as in monolith1 parent 5a7819f commit 0864389
File tree
3 files changed
+3
-3
lines changed- .github/actions/deploy-docker-images
- system-test
3 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
0 commit comments