-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add verifications for nodes and SF network
- Loading branch information
Showing
15 changed files
with
3,497 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Run Python verifications in Sioux Falls network (flaky) | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 6 * * 1' | ||
|
||
jobs: | ||
run-verifications-random: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: Install uxsim and dependencies | ||
run: pip install . | ||
- name: Install pytest other dependencies | ||
run: pip install pytest pytest-rerunfailures setuptools | ||
- name: Run verifications with pytest | ||
run: pytest tests/test_verification_sioux_falls.py --durations=0 -v |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Scenario data. | ||
|
||
Source: | ||
siouxfalls_* are derived from Transportation Networks for Research https://github.com/bstabler/TransportationNetworks by Transportation Networks for Research Core Team. | ||
tokyo_arterial_* are derived from OpenStreetMap https://www.openstreetmap.org/. |
Oops, something went wrong.