Skip to content

Commit 9f31248

Browse files
authored
Merge pull request #1 from artyom-smirnov/allow-dev-versions
Allow run tests on firebird built with --enable-developer flag
2 parents 59fcb66 + 3593849 commit 9f31248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebird/qa/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def pytest_configure(config):
126126
#
127127
with connect_server(_vars_['server'], user='SYSDBA',
128128
password=_vars_['password']) as srv:
129-
_vars_['version'] = parse(srv.info.version)
129+
_vars_['version'] = parse(srv.info.version.replace('-dev', ''))
130130
_vars_['home-dir'] = Path(srv.info.home_directory)
131131
_vars_['lock-dir'] = Path(srv.info.lock_directory)
132132
_vars_['security-db'] = Path(srv.info.security_database)

0 commit comments

Comments
 (0)