Skip to content

fix: ensure the same version is installed in host and pyodide venv #274

fix: ensure the same version is installed in host and pyodide venv

fix: ensure the same version is installed in host and pyodide venv #274

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
pip install uv
- name: Install project
run: |
uv pip install --system -e .
- name: Run tests
run: |
uv run pytest
- name: Verify that pywrangler can be run globally
run: |
pywrangler --help