File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
147
147
echo ============================================================================
148
148
149
149
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 \
151
151
--corpus ci_test \
152
152
--config ${lm_conf} \
153
153
--n_gpus ${n_gpus} \
@@ -172,7 +172,7 @@ if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then
172
172
173
173
echo ${conf}
174
174
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 \
176
176
--corpus ci_test \
177
177
--config ${conf} \
178
178
--config2 ${conf2} \
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ if [ ${stage} -le 4 ] && [ ${stop_stage} -ge 4 ]; then
179
179
180
180
echo ${conf}
181
181
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 \
183
183
--corpus ci_test \
184
184
--config ${conf} \
185
185
--config2 ${conf2} \
Original file line number Diff line number Diff line change 2
2
test =pytest
3
3
4
4
[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
6
6
python_files = test/*/test_*.py
7
7
testpaths = test
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ root=$( pwd)
3
4
cd ./examples/ci_test || exit 1;
5
+ ln -sf ${root} /coverage.xml .
4
6
5
7
# LM
6
8
./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
46
48
./run_2mtl.sh --stage 0 --conf conf/asr/blstm_las_2mtl.yaml --speed_perturb true --unit wp --unit_sub1 char || exit 1;
47
49
./run_2mtl.sh --stage 0 --conf conf/asr/transformer_2mtl.yaml --unit wp --unit_sub1 char || exit 1;
48
50
# ./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
You can’t perform that action at this time.
0 commit comments