Skip to content

Commit eb0d1fc

Browse files
committed
Moving away from setup.py test
1 parent e3734a8 commit eb0d1fc

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: python setup.py install
3434

3535
- name: Test
36-
run: python setup.py test
36+
run: python -m unittest discover -s tests -p "test*.py"
3737

3838
- name: install coveralls
3939
run: pip install coveralls

setup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@ def run(self):
5353
extras_require={
5454
':python_version>="3.6"': ["Pillow>=3.2.0"]
5555
},
56-
test_suite="tests",
57-
tests_require=[
58-
"coverage",
59-
"mock",
60-
],
6156
cmdclass={
6257
'coverage': Coverage,
6358
},

0 commit comments

Comments
 (0)