We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2c82a commit 38543f8Copy full SHA for 38543f8
CHANGELOG.md
@@ -3,6 +3,10 @@
3
4
## WIP
5
6
+### Features
7
+
8
+- Add `tox.ini` file
9
10
### Bugfixes
11
12
- Add `requirements.txt` to `sdist` package
MANIFEST.in
@@ -1,4 +1,5 @@
1
include mypy.ini
2
include pytest.ini
include requirements.txt
+include tox.ini
graft pytest_mypy_plugins/tests
tox.ini
@@ -0,0 +1,5 @@
+[testenv]
+deps =
+ -rrequirements.txt
+commands =
+ python -m pytest {posargs}
0 commit comments