Skip to content

Commit 23ca3e0

Browse files
committed
Create uv venv for integ tests
1 parent b35eafa commit 23ca3e0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/integ-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ jobs:
3838
aws-region: ${{ secrets.INTEG_TEST_REGION }}
3939

4040
- name: Run tests
41-
run: ./e2e_tests/run_integ_test.sh
41+
run: |
42+
cd src/python
43+
uv venv
44+
source .venv/bin/activate
45+
cd ../..
46+
./e2e_tests/run_integ_test.sh
4247
timeout-minutes: 15
4348
working-directory: ${{ github.workspace }}
4449

0 commit comments

Comments
 (0)