File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
.circleci/unittest/linux/scripts Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,6 @@ set -e
1010eval " $( ./conda/bin/conda shell.bash hook) "
1111conda activate ./env
1212
13- case " $( uname -s) " in
14- Darwin* ) os=MacOSX;;
15- * ) os=Linux
16- esac
17-
1813if [ -z " ${CUDA_VERSION:- } " ] ; then
1914 case " $( uname -s) " in
2015 Darwin* ) cudatoolkit=" " ;;
@@ -28,10 +23,7 @@ printf "Installing PyTorch with %s\n" "${cudatoolkit}"
2823conda install -y -c " pytorch-${UPLOAD_CHANNEL} " pytorch ${cudatoolkit}
2924
3025printf " * Installing dependencies for test\n"
31- conda install -y -c conda-forge --force-reinstall flake8 pytest pytest-cov codecov librosa> =0.8.0 scipy parameterized
32- if [ " ${os} " == Linux ] ; then
33- pip install clang-format
34- fi
26+ conda install -y -c conda-forge pytest pytest-cov codecov ' librosa>=0.8.0' scipy parameterized
3527pip install kaldi-io
3628
3729printf " * Building codecs\n"
Original file line number Diff line number Diff line change 55eval " $( ./conda/bin/conda shell.bash hook) "
66conda activate ./env
77
8+ pip install clang-format flake8
9+
810# We want to run all the style checks even if one of them fail.
911
1012exit_status=0
You can’t perform that action at this time.
0 commit comments