Changes in Makefile [1d60d90:bde4f641]
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r1d60d90 rbde4f641 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 … … 141 141 test_python: local_dylib 142 142 # run test with installed package 143 $(PYTEST) 143 # ./python/tests/run_all_tests --verbose 144 # run with nose2, multiple processes 145 $(NOSE2) 144 146 145 147 clean_python: … … 184 186 -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav" synth 127s sine 440 vol 0.9 185 187 -$(SOX) -r 8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav" trim 0 30 186 -$(SOX) -r 48000 -b 16-n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav" synth 60 sine 100-20000 vol 0.9188 -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav" synth 60 sine 100-20000 vol 0.9 187 189 -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_44100f_sine441.wav" synth 44100s sine 441 vol 0.9 188 190 -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_100f_sine441.wav" synth 100s sine 441 vol 0.9 … … 252 254 pip install -v -e . 253 255 # run tests, with python coverage 254 coverage run `which pytest`256 coverage run `which nose2` 255 257 # capture coverage again 256 258 lcov $(LCOVOPTS) --capture --no-external --directory . \
Note: See TracChangeset
for help on using the changeset viewer.