Skip to content

Commit

Permalink
use split on db_version
Browse files Browse the repository at this point in the history
allows us to test with a nightly build, e.g `3.12.0-NIGHTLY.20240116`
  • Loading branch information
aMahanna committed Jan 25, 2024
1 parent d0e3f07 commit b93971a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def pytest_configure(config):
global_data.username = username
global_data.password = password
global_data.db_name = tst_db_name
global_data.db_version = version.parse(db_version)
global_data.db_version = version.parse(db_version.split("-")[0])
global_data.sys_db = sys_db
global_data.tst_db = tst_db
global_data.bad_db = bad_db
Expand Down

0 comments on commit b93971a

Please sign in to comment.