Update __init__.py #802
This file contains hidden or 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 functions | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| jobs: | |
| test-functions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uxsim and dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install . | |
| - name: Install pytest other dependencies | |
| run: | | |
| # Install testing dependencies with compatible versions for parallel execution | |
| pip install "pytest>=8.4.0" "pytest-xdist>=3.8.0" "pytest-rerunfailures>=16.0" setuptools osmnx requests | |
| - name: Run tests with pytest | |
| run: pytest -n auto tests/test_other_functions.py --durations=0 -v | |