Skip to content

Commit

Permalink
Call .travis/ci.py after conda env is setup (but inside bash script)
Browse files Browse the repository at this point in the history
  • Loading branch information
kephale committed Aug 14, 2020
1 parent 2a5bbaf commit 4854222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ install: true
script:
#- ".travis/build.sh"
- "python3 .travis/pre_ci.py"
- "conda activate scijava-conda"
- "conda activate scijava-conda; python3 .travis/ci.py"
# .travis/ci.py is now called from travis_build.sh, which is called by pre_ci.py ^^^
#- "conda activate scijava-conda; python3 .travis/ci.py"
cache:
directories:
- "~/.m2/repository"
Expand Down
4 changes: 4 additions & 0 deletions travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ then
conda activate "$condaEnv"
checkSuccess $?

echo
echo "== Run CI code =="
python3 .travis/ci.py

echo travis_fold:end:scijava-conda
fi

Expand Down

0 comments on commit 4854222

Please sign in to comment.