File tree Expand file tree Collapse file tree 4 files changed +19
-14
lines changed Expand file tree Collapse file tree 4 files changed +19
-14
lines changed Original file line number Diff line number Diff line change 1
1
recursive-include tests *.py
2
2
recursive-include immutables *.py *.c *.h *.pyi
3
3
include LICENSE* NOTICE README.rst bench.png
4
- include mypy.ini immutables/py.typed
4
+ include immutables/py.typed
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,3 +4,21 @@ requires-python = ">=3.6"
4
4
[build-system ]
5
5
requires = [" setuptools>=42" , " wheel" ]
6
6
build-backend = " setuptools.build_meta"
7
+
8
+ [tool .pytest .ini_options ]
9
+ minversion = " 6.0"
10
+ addopts = " --capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib"
11
+ testpaths = " tests"
12
+ filterwarnings = " default"
13
+
14
+ [tool .mypy ]
15
+ incremental = true
16
+ strict = true
17
+
18
+ [[tool .mypy .overrides ]]
19
+ module = " immutables.map"
20
+ ignore_errors = true
21
+
22
+ [[tool .mypy .overrides ]]
23
+ module = " immutables._testutils"
24
+ ignore_errors = true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments