Add dynamic pricing support for DUE solver #340
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: Measure coverage | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| measure-coverage: | |
| runs-on: ubuntu-latest | |
| if: | | |
| (github.event_name == 'push' && github.repository == 'toruseo/UXsim') || | |
| (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.repository == 'toruseo/UXsim') | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install uxsim and dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e .[dev,advanced] | |
| - name: Install pytest other dependencies | |
| run: | | |
| # Install optional packages required for these tests | |
| pip install osmnx requests | |
| - name: Run verifications with pytest | |
| run: pytest -n auto tests/test_verification_straight_road.py tests/test_verification_route_choice.py tests/test_verification_node.py tests/test_verification_exceptional.py tests/test_verification_sioux_falls.py tests/test_verification_multilane.py tests/test_verification_taxi.py tests/test_verification_dta_solvers.py tests/test_other_functions.py tests/test_optional_functions_python313.py --durations=0 -v --cov=uxsim --cov-report=xml --cov-config=.github/.coveragerc | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5.5.2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage.xml | |
| name: codecov-umbrella | |
| fail_ci_if_error: true | |
| verbose: true | |