Skip to content

Commit 1ba2b26

Browse files
committed
formatting changes
1 parent 7e586c4 commit 1ba2b26

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mshell.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
if [$CI == true]
1+
if [[ $CI == true ]]
2+
then
23
pip install pytest
34
pip install pytest-cov
45
pytest --cov-config=.coveragerc
56
pytest --cov=./ --cov-report=xml
67
bash <(curl -s https://codecov.io/bash)
7-
elif
8+
else
89
python -m unittest discover tests
910
fi

0 commit comments

Comments
 (0)