We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3734a8 commit eb0d1fcCopy full SHA for eb0d1fc
.github/workflows/test.yml
@@ -33,7 +33,7 @@ jobs:
33
run: python setup.py install
34
35
- name: Test
36
- run: python setup.py test
+ run: python -m unittest discover -s tests -p "test*.py"
37
38
- name: install coveralls
39
run: pip install coveralls
setup.py
@@ -53,11 +53,6 @@ def run(self):
53
extras_require={
54
':python_version>="3.6"': ["Pillow>=3.2.0"]
55
},
56
- test_suite="tests",
57
- tests_require=[
58
- "coverage",
59
- "mock",
60
- ],
61
cmdclass={
62
'coverage': Coverage,
63
0 commit comments