diff --git a/.github/workflows/packaging-test-pipelines.yml b/.github/workflows/packaging-test-pipelines.yml index f79619b21..5b16466f9 100644 --- a/.github/workflows/packaging-test-pipelines.yml +++ b/.github/workflows/packaging-test-pipelines.yml @@ -3,6 +3,8 @@ name: Build tests in packaging images on: push: branches: "**" + pull_request: + types: [opened, reopened,synchronize] workflow_dispatch: diff --git a/src/test/regress/citus_tests/run_test.py b/src/test/regress/citus_tests/run_test.py index 04e32f313..9048f595e 100755 --- a/src/test/regress/citus_tests/run_test.py +++ b/src/test/regress/citus_tests/run_test.py @@ -98,7 +98,7 @@ with open(tmp_schedule_path, "a") as myfile: # find suitable make recipe if "isolation" in test_schedule: make_recipe = 'check-isolation-custom-schedule' -if "failure" in test_schedule: +elif "failure" in test_schedule: make_recipe = 'check-failure-custom-schedule' else: make_recipe = 'check-custom-schedule'