mirror of
https://github.com/csukuangfj/kaldifeat.git
synced 2025-08-09 18:12:17 +00:00
* Add nightly tests. * Fix CI tests. * Install numpy in CI. * Add nightly ubuntu cpu tests. * add nightly tests for macos * Fix CI for macOS. * Support building CPU conda packages for macOS and Ubuntu. * Disable building conda packages for macOS. * Add tests for conda packages. * Revert "Disable building conda packages for macOS." This reverts commit 9c3f6ebe98b390cfd13314686ab6a518a7ad3482. * Disable building conda packages for macOS. * Add tests for conda packages. * Enable all tests. * Run tests automatically. * Add windows cuda tests. * Fix errors. * Minor fixes. * Download cudnn for windows. * Fix installing cuDNN for windows. * Minor fixes. * Fix using cuDNN. * Typo fixes. * Update readme. * Minor fixes. * small fixes.
14 lines
338 B
Makefile
14 lines
338 B
Makefile
|
|
.PHONY: test
|
|
test:
|
|
python3 ./test_fbank.py
|
|
python3 ./test_fbank_options.py
|
|
python3 ./test_frame_extraction_options.py
|
|
python3 ./test_mel_bank_options.py
|
|
python3 ./test_mfcc.py
|
|
python3 ./test_mfcc_options.py
|
|
python3 ./test_plp.py
|
|
python3 ./test_plp_options.py
|
|
python3 ./test_spectrogram.py
|
|
python3 ./test_spectrogram_options.py
|