Skip to content

Commit

Permalink
Fix icefall CI pipeline: add missing pytest installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinyuan Li committed Dec 15, 2023
1 parent 2fccdaa commit 2a5718a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/icefall/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exit_code=0

pytest --cov-report=xml --cov=art --cov-append -q -vv tests/estimators/speech_recognition/test_pytorch_icefall.py --framework=pytorch --durations=0
python -m pytest --cov-report=xml --cov=art --cov-append -q -vv tests/estimators/speech_recognition/test_pytorch_icefall.py --framework=pytorch --durations=0
if [[ $? -ne 0 ]]; then exit_code=1; echo "Failed estimators/speech_recognition/test_pytorch_icefall tests"; fi

exit ${exit_code}

0 comments on commit 2a5718a

Please sign in to comment.