File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 22maxcube.egg-info
33maxcube /__pycache__
44tests /__pycache__
5+ .cache /v /cache
6+ .coverage
7+ setup.cpython-35-PYTEST.pyc
8+ python_maxcube_api.egg-info
Original file line number Diff line number Diff line change 66install :
77- pip install coveralls
88
9- script : nosetests
9+ script : run --source maxcube setup.py test
1010
1111after_success :
1212 - coveralls
Original file line number Diff line number Diff line change 17171818 url = 'https://github.com/goodfield/python-maxcube-api.git' ,
1919 license = license ,
20- packages = ['maxcube' ]
20+ packages = ['maxcube' ],
21+ test_suite = "tests.maxcube_suite"
2122)
Original file line number Diff line number Diff line change 1+ import unittest
2+ import tests .test_cube
3+
4+ def maxcube_suite ():
5+ loader = unittest .TestLoader ()
6+ suite = loader .loadTestsFromModule (test_cube )
7+ return suite
You can’t perform that action at this time.
0 commit comments