Skip to content

Commit 43bdee4

Browse files
committed
Fix the conftest rails-ex branch switch.
When translating the bash to python, the bash condition was '<= 3.1', not '< 3.1', therefore the range inversion is '> 3.1'. Since we also removed the 3.1, just bump it properly to '>= 3.3'.
1 parent 659747a commit 43bdee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
PSQL_IMAGE_SHORT = f"postgresql:12{PSQL_TAG}"
5353
PSQL_IMAGE_TAG = f"12{PSQL_TAG}"
5454
TEST_APP_BRANCH = "master"
55-
if VERSION and float(VERSION) >= 3.1:
55+
if VERSION and float(VERSION) >= 3.3:
5656
TEST_APP_BRANCH = "3.3"
5757
DEPLOYED_PSQL_IMAGE = "quay.io/sclorg/postgresql-12-c8s"
5858
VARS = Vars(

0 commit comments

Comments
 (0)