-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
35 lines (30 loc) · 910 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "pytest-fastest"
version = "0.0.12"
description = "Use SCM and coverage to run only needed tests"
authors = ["Kirk Strauser <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/kstrauser/pytest-fastest"
repository = "https://github.com/kstrauser/pytest-fastest"
documentation = "http://pytest-fastest.readthedocs.io/en/latest/"
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.8"
pytest = ">=4.4"
[tool.poetry.dev-dependencies]
pytest-mock = "*"
sphinx = "*"
[tool.poetry.plugins."pytest11"]
fastest = "pytest_fastest"
[tool.poetry.group.dev.dependencies]
tox = "^4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"