Changes in Makefile [9a1df7f:adde1ba]
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified Makefile ¶
r9a1df7f radde1ba 36 36 MANDIR?=$(DATAROOTDIR)/man 37 37 38 # default python testcommand39 PYTEST?=pytest--verbose38 # default nose2 command 39 NOSE2?=nose2 -N 4 --verbose 40 40 41 41 SOX=sox … … 139 139 test_python: local_dylib 140 140 # run test with installed package 141 $(PYTEST) 141 # ./python/tests/run_all_tests --verbose 142 # run with nose2, multiple processes 143 $(NOSE2) 142 144 143 145 clean_python: … … 233 235 check_clean_python 234 236 237 coverage_cycle: coverage_zero_counters coverage_report 238 239 coverage_zero_counters: 240 lcov --zerocounters --directory . 241 235 242 coverage: export CFLAGS=--coverage 236 243 coverage: export LDFLAGS=--coverage … … 241 248 lcov --capture --no-external --directory . --output-file build/coverage_lib.info 242 249 pip install -v -e . 243 coverage run `which pytest`250 coverage run `which nose2` 244 251 lcov --capture --no-external --directory . --output-file build/coverage_python.info 245 252 lcov -a build/coverage_python.info -a build/coverage_lib.info -o build/coverage.info 246 253 254 # make sure we don't build the doc, which builds a temporary python module 255 coverage_report: export WAFOPTS += --disable-docs 247 256 coverage_report: coverage 248 257 genhtml build/coverage.info --output-directory lcov_html
Note: See TracChangeset
for help on using the changeset viewer.