Skip to content
Snippets Groups Projects
Commit e28a8b84 authored by Stefano Zacchiroli's avatar Stefano Zacchiroli
Browse files

typing: minimal changes to make a no-op mypy run pass

parent dc19a5a8
No related branches found
Tags v0.0.45
1 merge request!17typing: minimal changes to make a no-op mypy run pass
......@@ -12,3 +12,4 @@ archives/
build/
dist/
.tox/
.mypy_cache/
......@@ -3,3 +3,4 @@ include requirements.txt
include requirements-swh.txt
include version.txt
recursive-include swh/loader/svn/tests/resources *
recursive-include swh py.typed
mypy.ini 0 → 100644
[mypy]
namespace_packages = True
warn_unused_ignores = True
# 3rd party libraries without stubs (yet)
[mypy-celery.*]
ignore_missing_imports = True
[mypy-subvertpy.*]
ignore_missing_imports = True
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from pkgutil import extend_path
from typing import Iterable
__path__ = extend_path(__path__, __name__) # type: Iterable[str]
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from pkgutil import extend_path
from typing import Iterable
__path__ = extend_path(__path__, __name__) # type: Iterable[str]
# Marker file for PEP 561.
[tox]
envlist=flake8,py3
envlist=flake8,mypy,py3
[testenv:py3]
deps =
......@@ -16,3 +16,11 @@ deps =
flake8
commands =
{envpython} -m flake8
[testenv:mypy]
skip_install = true
deps =
.[testing]
mypy
commands =
mypy swh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment