Skip to content

Commit 3593849

Browse files
Allow run tests on firebird built with --enable-developer flag
1 parent 98f16f4 commit 3593849

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)