aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: de2ece51d8c1747bc9002ef07e0e405199bc4c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
requires-python = ">=3.6"

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib"
testpaths = "tests"
filterwarnings = "default"

[tool.mypy]
incremental = true
strict = true

[[tool.mypy.overrides]]
module = "immutables.map"
ignore_errors = true

[[tool.mypy.overrides]]
module = "immutables._testutils"
ignore_errors = true