- Timestamp:
- Oct 3, 2017, 10:31:12 PM (7 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- 2e5c52e
- Parents:
- 7b7a58e (diff), 25db68c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r7b7a58e rbfbfafa 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: … … 232 235 check_clean_python 233 236 237 coverage: export CFLAGS=--coverage 238 coverage: export LDFLAGS=--coverage 239 coverage: export PYTHONPATH=$(PWD)/python/lib 240 coverage: export LD_LIBRARY_PATH=$(PWD)/build/src 241 coverage: force_uninstall_python deps_python \ 242 clean_python clean distclean build local_dylib 243 lcov --capture --no-external --directory . --output-file build/coverage_lib.info 244 pip install -v -e . 245 coverage run `which nose2` 246 lcov --capture --no-external --directory . --output-file build/coverage_python.info 247 lcov -a build/coverage_python.info -a build/coverage_lib.info -o build/coverage.info 248 249 coverage_report: coverage 250 genhtml build/coverage.info --output-directory lcov_html 251 mkdir -p gcovr_html/ 252 gcovr -r . --html --html-details \ 253 --output gcovr_html/index.html \ 254 --exclude ".*tests/.*" --exclude ".*examples/.*" 255 coverage report 256 coverage html 257 234 258 sphinx: configure 235 259 $(WAFCMD) sphinx $(WAFOPTS)
Note: See TracChangeset
for help on using the changeset viewer.