Skip to content

Commit

Permalink
try installing a different way to avoid errors
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Jul 12, 2018
1 parent ea68eb7 commit d4f2ff5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ env:

before_install:
- chmod +x travis_setup.sh; ./travis_setup.sh
- $HOME/miniconda2/bin/pip install --user phate
- $HOME/miniconda3/bin/pip install --user phate
- $HOME/miniconda2/bin/pip install phate
- $HOME/miniconda3/bin/pip install phate
- R -e "install.packages(c('reticulate', 'devtools', 'readr', 'phateR', 'Matrix', 'ggplot2', 'viridis'))"

install:
- cd python; python2 setup.py install --user
- python3 setup.py install --user
- cd python; python2 setup.py install
- python3 setup.py install
- cd ../Rmagic; R CMD INSTALL .; cd ..

script:
- cd Rmagic; R CMD build .
- travis_wait 30 R CMD check *tar.gz
- cd ../python; $HOME/miniconda2/bin/pip install -U .[test,doc]
- $HOME/miniconda3/bin/pip install -U .[test,doc]
- cd ../python; $HOME/miniconda2/bin/pip install -e .[test,doc]
- $HOME/miniconda3/bin/pip install -e .[test,doc]
- python2 setup.py test
- python3 setup.py test
- cd doc; make html
Expand Down

0 comments on commit d4f2ff5

Please sign in to comment.