Skip to content

Commit 61cc5f1

Browse files
add debug logs to python release (#57)
1 parent 2ae4cdc commit 61cc5f1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ jobs:
233233
target: ${{ matrix.platform.target }}
234234
args: --release --out dist --find-interpreter --manifest-path ./python-sdk/Cargo.toml
235235
sccache: 'true'
236+
- name: List dist directory
237+
run: ls -l dist
236238
- name: Upload wheels
237239
uses: actions/upload-artifact@v4
238240
with:
@@ -243,7 +245,8 @@ jobs:
243245
set -ex
244246
python3 -m venv .venv
245247
source .venv/bin/activate
246-
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
247250
pip install pytest cachetools
248251
npm ci
249252
npm run with-server test:python

0 commit comments

Comments
 (0)