Skip to content

Commit

Permalink
Use lockable with HTTP resources support (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
juhhov authored Aug 19, 2021
1 parent 748511b commit beaff35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest_lockable/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit beaff35

Please sign in to comment.