python test works #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python SDK Tests | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "python/**" | |
- "js-sdk-server/**" | |
pull_request: | |
branches: [main] | |
paths: | |
- "python/**" | |
- "js-sdk-server/**" | |
jobs: | |
test: | |
runs-on: warp-ubuntu-latest-x64-2x | |
strategy: | |
max-parallel: 1 | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install dependencies | |
working-directory: python | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install -e . | |
- name: Run tests | |
working-directory: python | |
env: | |
LIT_POLYGLOT_SDK_TEST_PRIVATE_KEY: ${{ secrets.LIT_POLYGLOT_SDK_TEST_PRIVATE_KEY }} | |
LIT_DEBUG_JS_SDK_SERVER: true | |
run: | | |
pytest tests/ -v | |
- name: Print server logs | |
if: always() | |
working-directory: python | |
run: | | |
if [ -f lit_python_sdk/server.log ]; then | |
echo "JS SDK Server log contents:" | |
cat lit_python_sdk/server.log | |
fi |