We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d97ff commit 8fb5a2cCopy full SHA for 8fb5a2c
.github/workflows/smoketests.yml
@@ -12,12 +12,9 @@ on:
12
- prod
13
14
jobs:
15
- smoke:
+ smoketests:
16
runs-on: ubuntu-latest
17
timeout-minutes: 120
18
- defaults:
19
- run:
20
- working-directory: api-client-python
21
steps:
22
- name: Checkout
23
uses: actions/checkout@v4
@@ -27,6 +24,9 @@ jobs:
27
24
with:
28
25
python-version: "3.11"
29
26
+ - name: Create virtualenv
+ run: uv venv
+
30
- name: Install dependencies
31
run: |
32
uv pip install -r requirements-dev.lock
@@ -45,7 +45,7 @@ jobs:
45
fi
46
echo "DEBUG=false" >> $GITHUB_ENV
47
echo "RUN_SMOKETESTS=1" >> $GITHUB_ENV
48
- echo "PYTHONPATH=${{ github.workspace }}/api-client-python/src" >> $GITHUB_ENV
+ echo "PYTHONPATH=${{ github.workspace }}/src" >> $GITHUB_ENV
49
50
- name: Run smoke tests (pytest via uv)
51
env:
0 commit comments