Skip to content

Commit

Permalink
fix CI's typo
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro committed Jan 23, 2023
1 parent 551fa1c commit a0c8e10
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/ci/activate_env.sh
@@ -1,7 +1,7 @@
if [ -e venv/bin/activate ]; then
source venv/bin/activate
elif [ -e venv/Scripts/activate ]; then
source virtenv/Scripts/activate
source venv/Scripts/activate
elif [ "$INSTALL_TYPE" == "conda" ]; then
conda init bash
source $CONDA/etc/profile.d/conda.sh
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/install.sh
Expand Up @@ -7,7 +7,7 @@ set -ex

PIPI="pip install --timeout=60"

if [ "$USE_PRE" == "1" ] || [ "$USE_PRE" = true ]; then
if [ "$USE_PRE" == "1" ] || [ "$USE_PRE" == true ]; then
PIPI="$PIPI --extra-index-url=$PRE_WHEELS --pre";
fi

Expand Down
2 changes: 1 addition & 1 deletion tools/ci/install_dependencies.sh
Expand Up @@ -16,7 +16,7 @@ if [ "$INSTALL_TYPE" == "conda" ]; then
else
PIPI="pip install --timeout=60 "

if [ "$USE_PRE" == "1" ] || [ "$USE_PRE" = true ]; then
if [ "$USE_PRE" == "1" ] || [ "$USE_PRE" == true ]; then
PIPI="$PIPI --extra-index-url=$PRE_WHEELS --pre";
fi

Expand Down
2 changes: 1 addition & 1 deletion tools/ci/run_tests.sh
Expand Up @@ -14,7 +14,7 @@ cd for_testing
cp ../setup.cfg .
# No figure windows for mpl; quote to hide : from travis-ci yaml parsing
echo "backend : agg" > matplotlibrc
if [ "$COVERAGE" == "1" ] || [ "$COVERAGE" = true ]; then
if [ "$COVERAGE" == "1" ] || [ "$COVERAGE" == true ]; then
cp ../.coveragerc .;
cp ../.codecov.yml .;
# Run the tests and check for test coverage.
Expand Down

0 comments on commit a0c8e10

Please sign in to comment.