remove mock testing requirement

This commit is contained in:
Jack Robison 2020-01-15 16:08:38 -05:00
parent 99fabb2a65
commit 1c6fd31796
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 3 additions and 8 deletions

View file

@ -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

View file

@ -38,10 +38,5 @@ setup(
install_requires=[
'netifaces',
'defusedxml'
],
extras_require={
'test': (
'mock',
)
}
]
)