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'],