Changes in / [b57ae47:f4fcf02]
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
rb57ae47 rf4fcf02 98 98 - which pip 99 99 - pip --version 100 - pip install python-coveralls101 100 102 101 script: … … 104 103 - | 105 104 if [[ -z "$AUBIO_NOTESTS" ]]; then 106 export NOSE2="coverage run --source=aubio `which nose2`"107 105 make test_lib_python_clean 108 106 make test_python_only_clean … … 110 108 make test_lib_only_clean 111 109 fi; 112 113 after_success:114 - coveralls115 110 116 111 notifications: -
Makefile
rb57ae47 rf4fcf02 36 36 MANDIR?=$(DATAROOTDIR)/man 37 37 38 # default nose2 command39 NOSE2?=nose2 -N 4 --verbose40 41 38 SOX=sox 42 39 … … 139 136 test_python: local_dylib 140 137 # run test with installed package 141 #./python/tests/run_all_tests --verbose142 # run with nose2, multiple processes143 $(NOSE2)138 ./python/tests/run_all_tests --verbose 139 # also run with nose, multiple processes 140 nose2 -N 4 144 141 145 142 clean_python:
Note: See TracChangeset
for help on using the changeset viewer.