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