From 3638bbdeaa8b3ed0d562d9e62eee3632846eb294 Mon Sep 17 00:00:00 2001 From: Adrianna Foster Date: Thu, 25 Apr 2024 10:19:02 -0600 Subject: [PATCH] remove argument definitions --- python/ctsm/run_ctsm_py_tests.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/python/ctsm/run_ctsm_py_tests.py b/python/ctsm/run_ctsm_py_tests.py index 1b922bd59e..8b39d69afa 100644 --- a/python/ctsm/run_ctsm_py_tests.py +++ b/python/ctsm/run_ctsm_py_tests.py @@ -69,20 +69,6 @@ def _commandline_args(description): test_subset.add_argument("-s", "--sys", action="store_true", help="Only run system tests") - test_subset.add_argument( - "--adv_unit", - action="store_true", - help="Only run advanced unit tests" - + " (with dask and/or advanced plotting. Use the ctsm_pylib_wdask conda environment)", - ) - - test_subset.add_argument( - "--adv_sys", - action="store_true", - help="Only run advanced system tests" - + " (with dask and/or advanced plotting. Use the ctsm_pylib_wdask conda environment)", - ) - test_subset.add_argument( "-p", "--pattern", help="File name pattern to match\n" "Default is test*.py" )