We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae4cdc commit 61cc5f1Copy full SHA for 61cc5f1
.github/workflows/python.yml
@@ -233,6 +233,8 @@ jobs:
233
target: ${{ matrix.platform.target }}
234
args: --release --out dist --find-interpreter --manifest-path ./python-sdk/Cargo.toml
235
sccache: 'true'
236
+ - name: List dist directory
237
+ run: ls -l dist
238
- name: Upload wheels
239
uses: actions/upload-artifact@v4
240
with:
@@ -243,7 +245,8 @@ jobs:
243
245
set -ex
244
246
python3 -m venv .venv
247
source .venv/bin/activate
- pip install eppo-server-sdk --no-index --find-links dist --force-reinstall
248
+ pip install --upgrade pip
249
+ pip install eppo-server-sdk --no-index --find-links dist --force-reinstall -v
250
pip install pytest cachetools
251
npm ci
252
npm run with-server test:python
0 commit comments