Test pip #36
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: Test pip | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * 1' | |
jobs: | |
test-pip: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
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 uxsim and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install uxsim | |
- name: Install pytest other dependencies | |
run: pip install pytest pytest-rerunfailures pytest-xdist setuptools | |
- name: Run tests with pytest | |
run: pytest -n auto tests/test_verification_sioux_falls.py --durations=0 -v |