forked from cloud-custodian/pytest-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.44 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
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "pytest-terraform"
version = "0.6.0"
description = "A pytest plugin for using terraform fixtures"
authors = ["Kapil Thangavelu <kapilt@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/cloud-custodian/pytest-terraform"
classifiers=[
"Topic :: Software Development :: Testing",
"Topic :: System :: Systems Administration",
"Topic :: System :: Distributed Computing"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
pytest = ">= 6.0"
jmespath = ">= 0.10.0"
portalocker = ">= 1.7.0"
pytest-xdist = ">= 1.31.0"
[tool.poetry.dev-dependencies]
mkdocs = "^1.1"
black = "^19.10b0"
isort = "^4.3.21"
flake8 = "^3.7.9"
coverage = "^5.1"
pytest-cov = "^2.8.1"
pre-commit = "^2.1.1"
[tool.poetry.plugins.pytest11]
terraform = "pytest_terraform.plugin"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
norecursedirs = ["data", "terraform"]
[tool.isort]
line_length = 90
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
not_skip = "__init__.py"
skip_glob = ["*/setup.py", "*tf", "*md"]
filter_files = true
known_first_party = "poetry"
[tool.black]
line-length = 90
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| tests/.*/setup.py
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"