6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-02-02 10:50:42 +01:00

Add 'files' to Action vars

This commit is contained in:
Pavel Císař 2021-11-12 18:28:00 +01:00
parent 095dd3a5af
commit c893f5c946

View File

@ -123,6 +123,8 @@ def pytest_configure(config):
_vars_['databases'] = path if path.is_dir() else config.rootpath
path = config.rootpath / 'backups'
_vars_['backups'] = path if path.is_dir() else config.rootpath
path = config.rootpath / 'files'
_vars_['files'] = path if path.is_dir() else config.rootpath
_vars_['server'] = config.getoption('server')
_vars_['protocol'] = config.getoption('protocol')
_vars_['save-output'] = config.getoption('save_output')