From 1c6fd317968d09be073a3f4680601dca897ba36b Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 15 Jan 2020 16:08:38 -0500 Subject: [PATCH] remove mock testing requirement --- .travis.yml | 4 ++-- setup.py | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) 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', - ) - } + ] )