From 155f5f5663fdc4cf78463d097262faaab60d4744 Mon Sep 17 00:00:00 2001 From: Pavel Cisar Date: Tue, 7 Jun 2022 19:18:51 +0200 Subject: [PATCH] Add encryption marker, add required psutils, release 0.15.1 --- firebird/qa/plugin.py | 1 + setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/firebird/qa/plugin.py b/firebird/qa/plugin.py index 33c2fd57..1a0ae37f 100644 --- a/firebird/qa/plugin.py +++ b/firebird/qa/plugin.py @@ -269,6 +269,7 @@ def pytest_configure(config): config.addinivalue_line("markers", "version(versions): Firebird version specifications") config.addinivalue_line("markers", "platform(platforms): Platform names") config.addinivalue_line("markers", "slow: Mark test as slow to run") + config.addinivalue_line("markers", "encryption: Mark test as requiring the encryption plugin") if config.getoption('help'): return config_path: Path = Path.cwd() / 'firebird-driver.conf' diff --git a/setup.cfg b/setup.cfg index 5e4d9580..7aa8c791 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ all-files=True [metadata] name = firebird-qa -version = 0.15.0 +version = 0.15.1 description = pytest plugin for Firebird QA long_description = file: README.rst long_description_content_type = text/x-rst; charset=UTF-8 @@ -40,6 +40,7 @@ install_requires = firebird-base>=1.3.0 firebird-driver>=1.4.1 pytest>=7.0.0 + psutil>=5.9.1 packages = find_namespace: [options.packages.find]