- Properly define pytest as an extra dependency
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@
|
|||||||
/.idea/
|
/.idea/
|
||||||
/tiffwrite.egg-info/
|
/tiffwrite.egg-info/
|
||||||
/.pytest_cache/
|
/.pytest_cache/
|
||||||
|
/venv/
|
||||||
|
|||||||
@@ -20,9 +20,10 @@ numpy = "*"
|
|||||||
tqdm = "*"
|
tqdm = "*"
|
||||||
colorcet = "*"
|
colorcet = "*"
|
||||||
matplotlib = "*"
|
matplotlib = "*"
|
||||||
|
pytest = { version = "*", optional = true }
|
||||||
|
|
||||||
[tool.poetry.group.test.dependencies]
|
[tool.poetry.extras]
|
||||||
pytest = "*"
|
test = ["pytest"]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
|
|||||||
Reference in New Issue
Block a user