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 4b267e4 commit aeecab9Copy full SHA for aeecab9
.github/workflows/test.yml
@@ -44,6 +44,10 @@ jobs:
44
run: |
45
python -m ruff format --check .
46
47
+ - name: Type Check
48
+ run: |
49
+ python -m mypy testtools
50
+
51
- name: Tests
52
53
python -W once -m testtools.run testtools.tests.test_suite
pyproject.toml
@@ -35,7 +35,10 @@ Homepage = "https://github.com/testing-cabal/testtools"
35
[project.optional-dependencies]
36
test = ["testscenarios", "testresources"]
37
twisted = ["Twisted", "fixtures"]
38
-dev = ["ruff==0.14.4"]
+dev = [
39
+ "ruff==0.14.4",
40
+ "mypy>=1.0.0",
41
+]
42
43
[tool.hatch.version]
source = "vcs"
0 commit comments