diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-20 10:05:27 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-20 10:05:27 -0800 |
| commit | 2c6efe630af507f7f1b76048100f6500244151a3 (patch) | |
| tree | 8ad0ab091956a665a2d2a5471b36b1cf0f856990 /pyproject.toml | |
| parent | d78f25717567870d4bb991e9bca7451f925f29ac (diff) | |
| parent | 7c5e87695f56ea3de7a04082b357998fc825e625 (diff) | |
| download | wikiget-2c6efe630af507f7f1b76048100f6500244151a3.tar.gz wikiget-2c6efe630af507f7f1b76048100f6500244151a3.zip | |
Merge pull request #15 from clpo13/reduce-api-calls
Speed up batch downloads by reducing the number of API calls
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 5681dc4..46f1ddf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,10 +79,12 @@ cov-report = [ "coverage report", ] htmlcov = "coverage html" +xmlcov = "coverage xml" cov = [ "test-cov", "cov-report", "htmlcov", + "xmlcov", ] [[tool.hatch.envs.all.matrix]] @@ -198,6 +200,7 @@ warn_unused_ignores = true strict_equality = true check_untyped_defs = true extra_checks = true +disallow_untyped_defs = true [[tool.mypy.overrides]] module = [ |
