Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flake8 and mypy to Travis #86

Merged
merged 13 commits into from
Jan 21, 2020
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ language: python

matrix:
include:
- python: "3.8"
env: TOXENV=flake8
- python: "3.8"
env: TOXENV=mypy
- python: "2.7"
env: TOXENV=test-py27,codecov
- python: "3.4"
Expand Down
6 changes: 3 additions & 3 deletions src/hyperlink/_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __repr__(self):
if var_name:
# superclass type hints don't allow str return type, but it is
# allowed in the docs, hence the ignore[override] below
def __reduce__(self): # type: ignore[override]
def __reduce__(self):
# type: () -> str
return self.var_name

Expand Down Expand Up @@ -448,7 +448,7 @@ def _optional(argument, default):


def _typecheck(name, value, *types):
# type: (Text, T, Type) -> T
# type: (Text, T, Type[Any]) -> T
"""
Check that the given *value* is one of the given *types*, or raise an
exception describing the problem using *name*.
Expand Down Expand Up @@ -479,7 +479,7 @@ def _textcheck(name, value, delims=frozenset(), nullable=False):


def iter_pairs(iterable):
# type: (Iterable) -> Iterator
# type: (Iterable[Any]) -> Iterator[Any]
"""
Iterate over the (key, value) pairs in ``iterable``.

Expand Down
8 changes: 6 additions & 2 deletions src/hyperlink/test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ class HyperlinkTestCase(TestCase):
assertRaises method for Python 2.6 testing.
"""
def assertRaises( # type: ignore[override]
self, expected_exception, callableObj=None, *args, **kwargs
self,
expected_exception, # type: Type[BaseException]
callableObj=None, # type: Optional[Callable[..., Any]]
*args, # type: Any
**kwargs # type: Any
):
# type: (Type[BaseException], Optional[Callable], Any, Any) -> Any
# type: (...) -> Any
"""Fail unless an exception of class expected_exception is raised
by callableObj when invoked with arguments args and keyword
arguments kwargs. If a different type of exception is
Expand Down
1 change: 0 additions & 1 deletion src/hyperlink/test/test_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,6 @@ def test_autorooted(self):

attempt_unrooted_absolute = URL(host="foo", path=['bar'], rooted=False)
normal_absolute = URL(host="foo", path=["bar"])
attempted_rooted_replacement = normal_absolute.replace(rooted=True)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@glyph: here

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

weird. that's a real bug. we should be asserting something about that object

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that asserting something about that object is unrelated to this PR, though, and is an example of why landing this PR would be good :-)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure how you want to address that. Can you open a PR with a fix or an issue to track it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For reference, this came via #91

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I guess what I meant was I should have asserted something about that object :).

You can feel free to just clean it up here for the time being, and assign any resulting issue to me

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue #99 for replacing this.

self.assertEqual(attempt_unrooted_absolute, normal_absolute)
self.assertEqual(normal_absolute.rooted, True)
self.assertEqual(attempt_unrooted_absolute.rooted, True)
Expand Down
25 changes: 15 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]

envlist =
flake8
flake8, mypy
test-py{26,27,34,35,36,37,38,py,py3}
coverage_report
packaging
Expand Down Expand Up @@ -55,6 +55,8 @@ passenv =
setenv =
PY_MODULE=hyperlink

test: PYTHONPYCACHEPREFIX={envtmpdir}/pycache

test: COVERAGE_FILE={toxworkdir}/coverage.{envname}
{coverage_report,codecov}: COVERAGE_FILE={toxworkdir}/coverage
codecov: COVERAGE_XML={envlogdir}/coverage_report.xml
Expand All @@ -75,12 +77,9 @@ basepython = python3.8

skip_install = True

# Pin pydocstyle to version 3: see https://gitlab.com/pycqa/flake8-docstrings/issues/36
deps =
flake8-bugbear==19.8.0
#flake8-docstrings==1.4.0
#flake8-import-order==0.18.1
#flake8-pep3101==1.2.1
#flake8-docstrings==1.5.0
flake8==3.7.9
mccabe==0.6.1
pep8-naming==0.9.1
Expand Down Expand Up @@ -142,11 +141,9 @@ basepython = python3.8

skip_install = True


deps =
mypy==0.750


commands =
mypy \
--config-file="{toxinidir}/tox.ini" \
Expand All @@ -173,7 +170,11 @@ warn_return_any = True
warn_unreachable = True
warn_unused_ignores = True

[mypy-hyperlink._url]
# Don't complain about dependencies known to lack type hints
# 4 at time of writing (2020-20-01), so maybe disable this soon
allow_untyped_defs = True


[mypy-idna]
ignore_missing_imports = True
Expand All @@ -196,8 +197,8 @@ deps =

commands =
coverage combine
coverage report
coverage html
- coverage report
- coverage html


##
Expand All @@ -217,6 +218,8 @@ deps =
codecov==2.0.15

commands =
# Note documentation for CI variables in default environment's passenv

coverage combine
coverage xml -o "{env:COVERAGE_XML}"
codecov --file="{env:COVERAGE_XML}" --env \
Expand Down Expand Up @@ -281,7 +284,9 @@ basepython = python
deps =
check-manifest==0.40
readme_renderer==24.0
twine==2.0.0

commands =
check-manifest
python setup.py check --metadata --restructuredtext --strict
pip wheel --wheel-dir "{envtmpdir}/dist" --no-deps {toxinidir}
twine check "{envtmpdir}/dist/"*