-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 776 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 776 Bytes
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
[tool.poetry]
authors = ["Felipe 'Bidu' Rodrigues <felipe@felipevr.com>"]
description = "Feature Change helps you check if a new function behaves like and older one"
license = "MIT"
name = "feature-change"
version = "0.1.0"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = {version = "^19.10-beta.0", allow-prereleases = true}
ipython = "^7.13"
pre-commit = {version = "^2.0"}
pylint = "^2.4"
pytest = {version = "^6.0"}
pytest-cov = "^2.10.0"
pytest-mock = "^3.2.0"
[tool.pytest.ini_options]
addopts = """
-ra -vv
--cov=feature_change
--cov-report term-missing:skip-covered
--doctest-modules
"""
minversion = "6.0"
testpaths = [
"tests",
]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]