From 4a6a40ee0c7ba123d5d95908d52e749fa55fb9b0 Mon Sep 17 00:00:00 2001 From: Bernard Szabo Date: Wed, 11 Dec 2024 12:58:05 -0500 Subject: [PATCH] All tests run, with /ci --- tubular/scripts/dd_synthetic_tests.py | 80 +++++++++++++-------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/tubular/scripts/dd_synthetic_tests.py b/tubular/scripts/dd_synthetic_tests.py index 1cfdd2dd..664dbcb3 100644 --- a/tubular/scripts/dd_synthetic_tests.py +++ b/tubular/scripts/dd_synthetic_tests.py @@ -145,14 +145,14 @@ def run_synthetic_tests(enable_automated_rollbacks, slack_notification_channel): # PUBLIC_TEST_ID = "sad-hqu-h33" # tests_to_run = json.loads(os.getenv("TESTS_TO_RUN")) tests_to_run = [ - # { - # "name": - # ''' - # edX Smoke Test - [Anonymous user] An anonymous user is directed to the - # Logistration page (authn.edx.org) when trying to access content behind log-in wall - # ''', - # "id": "6tq-u28-hwa" - # }, + { + "name": + ''' + edX Smoke Test - [Anonymous user] An anonymous user is directed to the + Logistration page (authn.edx.org) when trying to access content behind log-in wall + ''', + "id": "6tq-u28-hwa" + }, { "name": ''' @@ -161,38 +161,38 @@ def run_synthetic_tests(enable_automated_rollbacks, slack_notification_channel): ''', "id": "zkx-36f-kui" }, - # { - # "name": - # ''' - # [Synthetics] edX Smoke Test - [Audit student] An enrolled audit student can access - # a course’s landing page, course content, and course forum - # ''', - # "id": "jvx-2jw-agj" - # }, - # { - # "name": - # ''' - # [Synthetics] edX Smoke Test - [Audit student] An enrolled audit student cannot load - # a graded problem, and sees the upsell screen - # ''', - # "id": "75p-sez-5wg" - # }, - # { - # "name": - # ''' - # [Synthetics] edX Smoke Test - [Verified student] An enrolled verified student can - # access a course’s landing page, course content, and course forum - # ''', - # "id": "zbz-r28-jjx" - # }, - # { - # "name": - # ''' - # [Synthetics] edX Smoke Test - [Verified student] A verified student can - # access a graded course problem - # ''', - # "id": "tck-hrr-ubp" - # }, + { + "name": + ''' + [Synthetics] edX Smoke Test - [Audit student] An enrolled audit student can access + a course’s landing page, course content, and course forum + ''', + "id": "jvx-2jw-agj" + }, + { + "name": + ''' + [Synthetics] edX Smoke Test - [Audit student] An enrolled audit student cannot load + a graded problem, and sees the upsell screen + ''', + "id": "75p-sez-5wg" + }, + { + "name": + ''' + [Synthetics] edX Smoke Test - [Verified student] An enrolled verified student can + access a course’s landing page, course content, and course forum + ''', + "id": "zbz-r28-jjx" + }, + { + "name": + ''' + [Synthetics] edX Smoke Test - [Verified student] A verified student can + access a graded course problem + ''', + "id": "tck-hrr-ubp" + }, ] logging.info(f"Running the following tests: {str(tests_to_run)}")