remove mock testing requirement
This commit is contained in:
parent
99fabb2a65
commit
1c6fd31796
2 changed files with 3 additions and 8 deletions
|
@ -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
|
||||
|
|
7
setup.py
7
setup.py
|
@ -38,10 +38,5 @@ setup(
|
|||
install_requires=[
|
||||
'netifaces',
|
||||
'defusedxml'
|
||||
],
|
||||
extras_require={
|
||||
'test': (
|
||||
'mock',
|
||||
)
|
||||
}
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue