Updating makefile to run tests in ci.
This commit is contained in:
parent
e327ac06ce
commit
7f62569bfb
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -1,5 +1,8 @@
|
|||
pyvows:
|
||||
@env PYTHONPATH=$$PYTHONPATH:vows/sandbox/:. pyvows --cover --cover_package=django_pyvows --cover_threshold=100 vows/
|
||||
|
||||
ci_test:
|
||||
@env PYTHONPATH=$$PYTHONPATH:vows/sandbox/:. pyvows -r django_pyvows.coverage.xml -x vows/
|
||||
|
||||
db:
|
||||
@env PYTHONPATH=$$PYTHONPATH:. mysql -u root -e 'DROP DATABASE IF EXISTS django_pyvows' && mysql -u root -e 'CREATE DATABASE IF NOT EXISTS django_pyvows' && python vows/sandbox/manage.py syncdb
|
||||
|
|
Reference in a new issue