From bdbd38fbeb6e106b8706e5e122818ebf3b89e359 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Wed, 2 Oct 2024 16:21:46 +0200 Subject: [PATCH] Rename framework workflow test script for easier test collection If you want to run or collect workflow tests now you've got to indicate the full path currently (i.e. `pytest --collect-only lib/galaxy_test/workflow/tests.py`). With this change `pytest --collect-only lib/galaxy_test/workflow/` or just `pytest --collect-only lib/galaxy_test/` will also discover the workflow tests. --- .../workflow/{tests.py => test_framework_workflows.py} | 0 run_tests.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/galaxy_test/workflow/{tests.py => test_framework_workflows.py} (100%) diff --git a/lib/galaxy_test/workflow/tests.py b/lib/galaxy_test/workflow/test_framework_workflows.py similarity index 100% rename from lib/galaxy_test/workflow/tests.py rename to lib/galaxy_test/workflow/test_framework_workflows.py diff --git a/run_tests.sh b/run_tests.sh index c5b6104a5827..e10e4798c488 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -597,7 +597,7 @@ elif [ -n "$framework_workflows_test" ]; then else selector="" fi - extra_args="lib/galaxy_test/workflow/tests.py $selector" + extra_args="lib/galaxy_test/workflow/test_framework_workflows.py $selector" elif [ -n "$selenium_script" ]; then extra_args="$selenium_script" elif [ -n "$toolshed_script" ]; then