Skip to content

Commit 6eccdbd

Browse files
committed
Fix running PG upgrade tests with run_test.py
In #6814 we started using the Python test runner for upgrade tests in run_test.py, instead of the Perl based one. This had a problem though, not all tests in minimal_schedule can be run with the Python runner. This adds a separate minimal schedule for the pg_upgrade tests which doesn't include the tests that break with the Python runner.
1 parent e5e5eb3 commit 6eccdbd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/test/regress/citus_tests/run_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def default_base_schedule(test_schedule, args):
239239
return None
240240

241241
if "pg_upgrade" in test_schedule:
242-
return "minimal_schedule"
242+
return "minimal_pg_upgrade_schedule"
243243

244244
if test_schedule in ARBITRARY_SCHEDULE_NAMES:
245245
print(f"WARNING: Arbitrary config schedule ({test_schedule}) is not supported.")
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test: multi_test_helpers multi_test_helpers_superuser multi_test_catalog_views

0 commit comments

Comments
 (0)