diff --git a/.travis.yml b/.travis.yml index 13bb672..d69d447 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ jobs: name: "mypy" before_install: - pip install mypy lxml - - pip install -e .[test] + - pip install -e . script: - mypy aioupnp --txt-report . --scripts-are-modules; cat index.txt; rm index.txt @@ -20,7 +20,7 @@ jobs: python: "3.8" before_install: - pip install pylint coverage - - pip install -e .[test] + - pip install -e . script: - HOME=/tmp coverage run -m unittest discover -v tests diff --git a/setup.py b/setup.py index 145fcb4..a0cad75 100644 --- a/setup.py +++ b/setup.py @@ -38,10 +38,5 @@ setup( install_requires=[ 'netifaces', 'defusedxml' - ], - extras_require={ - 'test': ( - 'mock', - ) - } + ] )