From f725dce97158f1e8b852e5bceb99582b86f6150f Mon Sep 17 00:00:00 2001 From: Toru Seo <34780089+toruseo@users.noreply.github.com> Date: Wed, 20 Mar 2024 20:32:27 +0900 Subject: [PATCH] Adjust tests --- .github/workflows/run-examples.yml | 2 +- .github/workflows/run-verifications.yml | 2 +- .github/workflows/run-verifications_random.yml | 2 +- .github/workflows/run-verifications_sioux_falls.yml | 2 +- tests/{test_demos_and_examples.py => test_examples.py} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename tests/{test_demos_and_examples.py => test_examples.py} (100%) diff --git a/.github/workflows/run-examples.yml b/.github/workflows/run-examples.yml index 469cadc..ecba445 100644 --- a/.github/workflows/run-examples.yml +++ b/.github/workflows/run-examples.yml @@ -21,4 +21,4 @@ jobs: - name: Install pytest other dependencies run: pip install pytest setuptools gymnasium torch osmnx - name: Run examples with pytest - run: pytest tests/test_demos_and_examples.py --durations=0 + run: pytest tests/test_examples.py --durations=0 diff --git a/.github/workflows/run-verifications.yml b/.github/workflows/run-verifications.yml index 6d7d0da..a5c829e 100644 --- a/.github/workflows/run-verifications.yml +++ b/.github/workflows/run-verifications.yml @@ -1,4 +1,4 @@ -name: Run Python verifications +name: Run Python verifications (deterministic) on: push: diff --git a/.github/workflows/run-verifications_random.yml b/.github/workflows/run-verifications_random.yml index eeb82a0..eaa736d 100644 --- a/.github/workflows/run-verifications_random.yml +++ b/.github/workflows/run-verifications_random.yml @@ -1,4 +1,4 @@ -name: Run Python verifications involves random route choice and node (flaky) +name: Run Python verifications (route choice and node; flaky) on: push: diff --git a/.github/workflows/run-verifications_sioux_falls.yml b/.github/workflows/run-verifications_sioux_falls.yml index 7df5f83..ae601e9 100644 --- a/.github/workflows/run-verifications_sioux_falls.yml +++ b/.github/workflows/run-verifications_sioux_falls.yml @@ -1,4 +1,4 @@ -name: Run Python verifications in Sioux Falls network (flaky) +name: Run Python verifications (Sioux Falls network; flaky) on: push: diff --git a/tests/test_demos_and_examples.py b/tests/test_examples.py similarity index 100% rename from tests/test_demos_and_examples.py rename to tests/test_examples.py