Changes in / [5eaed62:dfa4095]
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
r5eaed62 rdfa4095 98 98 - which pip 99 99 - pip --version 100 - pip install python-coveralls 100 101 101 102 script: … … 104 105 if [[ -z "$AUBIO_NOTESTS" ]]; then 105 106 make test_lib_python_clean 106 make test_python_only_clean 107 export NOSE2="coverage run --source=aubio `which nose2`" 108 make test_python_only 107 109 else 108 110 make test_lib_only_clean 109 111 fi; 112 113 after_success: 114 - | 115 if [[ -z "$AUBIO_NOTESTS" ]]; then 116 sed 's|\"\([^"]*\)/\(aubio\/\)\([^"]*\.py\)"|"'$PWD'/python/lib/aubio/\3"|g' .coverage > .coverage.remap 117 mv -f .coverage.remap .coverage 118 coveralls 119 fi 110 120 111 121 notifications: -
Makefile
r5eaed62 rdfa4095 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.