Skip to content

Commit 2bf5bbe

Browse files
committed
Add coverage report for training
1 parent 1c3d5ff commit 2bf5bbe

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

examples/ci_test/run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
147147
echo ============================================================================
148148

149149
echo ${lm_conf}
150-
CUDA_VISIBLE_DEVICES=${gpu} ${NEURALSP_ROOT}/neural_sp/bin/lm/train.py \
150+
CUDA_VISIBLE_DEVICES=${gpu} coverage run -a ${NEURALSP_ROOT}/neural_sp/bin/lm/train.py \
151151
--corpus ci_test \
152152
--config ${lm_conf} \
153153
--n_gpus ${n_gpus} \
@@ -172,7 +172,7 @@ if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then
172172

173173
echo ${conf}
174174
echo ${conf2}
175-
CUDA_VISIBLE_DEVICES=${gpu} ${NEURALSP_ROOT}/neural_sp/bin/asr/train.py \
175+
CUDA_VISIBLE_DEVICES=${gpu} coverage run -a ${NEURALSP_ROOT}/neural_sp/bin/asr/train.py \
176176
--corpus ci_test \
177177
--config ${conf} \
178178
--config2 ${conf2} \

examples/ci_test/run_2mtl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then
179179

180180
echo ${conf}
181181
echo ${conf2}
182-
CUDA_VISIBLE_DEVICES=${gpu} ${NEURALSP_ROOT}/neural_sp/bin/asr/train.py \
182+
CUDA_VISIBLE_DEVICES=${gpu} coverage run -a ${NEURALSP_ROOT}/neural_sp/bin/asr/train.py \
183183
--corpus ci_test \
184184
--config ${conf} \
185185
--config2 ${conf2} \

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
test=pytest
33

44
[tool:pytest]
5-
addopts = --maxfail=3 --durations=10 --cov-config=.coveragerc --cov=neural_sp --cov-report=xml
5+
addopts = --maxfail=3 --durations=10 --cov-config=.coveragerc --cov=neural_sp --cov-report xml
66
python_files = test/*/test_*.py
77
testpaths = test

test/test_training.sh

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22

3+
root=$(pwd)
34
cd ./examples/ci_test || exit 1;
5+
ln -sf ${root}/coverage.xml .
46

57
# LM
68
./run.sh --stop_stage 3 --lm_conf conf/lm/rnnlm.yaml || exit 1;
@@ -46,3 +48,6 @@ local/score.sh --model results/asr/train_char/conv2Ltransformer8dmodel32dff1L4Hp
4648
./run_2mtl.sh --stage 0 --conf conf/asr/blstm_las_2mtl.yaml --speed_perturb true --unit wp --unit_sub1 char || exit 1;
4749
./run_2mtl.sh --stage 0 --conf conf/asr/transformer_2mtl.yaml --unit wp --unit_sub1 char || exit 1;
4850
# ./run_2mtl.sh --stage 0 --conf conf/asr/blstm_las_2mtl_per_batch.yaml --unit wp --unit_sub1 char || exit 1;
51+
52+
coverage report --include neural_sp
53+
coverage xml

0 commit comments

Comments
 (0)