From beaff3553d0107e1da6eb2bcca04f9bf27e9d520 Mon Sep 17 00:00:00 2001 From: Juho Hovila Date: Thu, 19 Aug 2021 11:41:50 +0300 Subject: [PATCH] Use lockable with HTTP resources support (#19) * lockable@0.5.0 --- pytest_lockable/plugin.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest_lockable/plugin.py b/pytest_lockable/plugin.py index 2f05839..1a22a05 100644 --- a/pytest_lockable/plugin.py +++ b/pytest_lockable/plugin.py @@ -14,7 +14,7 @@ def pytest_addoption(parser): group.addoption("--allocation_hostname", default=socket.gethostname(), help="Allocation host") group.addoption("--allocation_requirements", default=None, help="Resource requirements to be allocate") group.addoption("--allocation_timeout", default=10, help="Allocation timeout") - group.addoption("--allocation_resource_list_file", default='resources.json', help="Available resorces list") + group.addoption("--allocation_resource_list_file", default='resources.json', help="Available resources list") group.addoption("--allocation_lock_folder", default=tempfile.gettempdir(), help="Allocation lockfiles folder") diff --git a/setup.py b/setup.py index 52392b9..18c31a1 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ python_requires='>=3.7, <4', install_requires=[ 'pytest', - 'lockable==0.4.2' + 'lockable==0.5.0' ], extras_require={ # Optional 'dev': ['nose', 'coveralls', 'pylint', 'coverage'],