mirror of https://github.com/kivy/kivy.git
makefile: unfortunately, the kivy nosetest with uix are segfault within setup.py. use external nosetests.
This commit is contained in:
parent
52a11e40ae
commit
60f9935d26
5
Makefile
5
Makefile
|
@ -21,7 +21,9 @@ hook:
|
||||||
chmod +x .git/hooks/pre-commit
|
chmod +x .git/hooks/pre-commit
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python setup.py nosetests
|
-rm -rf kivy/tests/build
|
||||||
|
nosetests kivy/tests
|
||||||
|
# python setup.py nosetests
|
||||||
|
|
||||||
cover:
|
cover:
|
||||||
coverage html --include='$(KIVY_DIR)*' --omit '$(KIVY_DIR)lib/*,$(KIVY_DIR)tools/*,$(KIVY_DIR)tests/*'
|
coverage html --include='$(KIVY_DIR)*' --omit '$(KIVY_DIR)lib/*,$(KIVY_DIR)tools/*,$(KIVY_DIR)tests/*'
|
||||||
|
@ -31,6 +33,7 @@ clean:
|
||||||
-rm -rf htmlcov
|
-rm -rf htmlcov
|
||||||
-rm .coverage
|
-rm .coverage
|
||||||
-rm .noseids
|
-rm .noseids
|
||||||
|
-rm -rf kivy/tests/build
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
-git clean -dxf
|
-git clean -dxf
|
||||||
|
|
Loading…
Reference in New Issue