forked from jerry-git/pytest-split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.5 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "pytest-split"
version = "0.3.0"
description = "Pytest plugin for splitting test suite based on test execution time"
homepage = 'https://github.com/jerry-git/pytest-split'
repository = 'https://github.com/jerry-git/pytest-split'
authors = ["Jerry Pussinen <jerry.pussinen@gmail.com>"]
maintainers = []
readme = 'README.md'
license = "MIT"
keywords = ['pytest', 'plugin', 'split', 'tests']
packages = [{ include = 'pytest_split', from = 'src' }]
include = ['LICENCE']
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Pytest",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.6.1"
pytest = "^5 | ^6"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "^5.5"}
pre-commit = "^2.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins.pytest11]
pytest-split = "pytest_split.plugin"
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.coverage.run]
include = ["src/pytest_split/*"]
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
'if TYPE_CHECKING:',
'pragma: no cover'
]
fail_under = 100
[tool.isort]
profile = 'black'
line_length = 120