-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roachtest: update sqlalchemy roachtest to use SQLA 1.4 #66153
Conversation
This was failing because we reorganized the project and bumped the SQL Alchemy supported version to 1.4.17. Fixes cockroachdb#66075 Release note: None
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ty!
needs a backport to 20.2 and 21.1 as well
@@ -22,7 +22,7 @@ import ( | |||
var sqlAlchemyResultRegex = regexp.MustCompile(`^(?P<test>test.*::.*::[^ \[\]]*(?:\[.*])?) (?P<result>\w+)\s+\[.+]$`) | |||
var sqlAlchemyReleaseTagRegex = regexp.MustCompile(`^rel_(?P<major>\d+)_(?P<minor>\d+)_(?P<point>\d+)$`) | |||
|
|||
var supportedSQLAlchemyTag = "rel_1_3_24" | |||
var supportedSQLAlchemyTag = "rel_1_4_17" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice -- should we also pin the version of sqlalchemy-cockroachdb under test in this script?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Talked offline, we'll keep it at master for now and monitor how things go with Gord's work on the adapter.
TFTR! bors r=rafiss |
Build failed (retrying...): |
Build succeeded: |
This was failing because we reorganized the project and bumped the
SQL Alchemy supported version to 1.4.17.
Fixes #66075
Release note: None