6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Allow run tests on firebird built with --enable-developer flag

This commit is contained in:
Artyom Smirnov 2021-06-30 17:38:23 +03:00
parent 98f16f425a
commit 35938493a4

View File

@ -126,7 +126,7 @@ def pytest_configure(config):
#
with connect_server(_vars_['server'], user='SYSDBA',
password=_vars_['password']) as srv:
_vars_['version'] = parse(srv.info.version)
_vars_['version'] = parse(srv.info.version.replace('-dev', ''))
_vars_['home-dir'] = Path(srv.info.home_directory)
_vars_['lock-dir'] = Path(srv.info.lock_directory)
_vars_['security-db'] = Path(srv.info.security_database)