Skip to content

Commit

Permalink
Remove python test on homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniBussi committed Jan 24, 2020
1 parent 367d7dc commit 2e9b8ef
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,15 @@ install:
# install lcov
- if test "$MAKECOVERAGE" == yes ; then ./.travis/install.lcov v1.14 ; fi
# install numpy and cython for python interface
# only for linux and homebrew (no macports)
# only for linux
# with homebrew I currently have problem in installing python so I leave it out
- if test "$PLUMED_CXX" ; then
sudo pip install --upgrade pip ;
sudo pip install numpy ;
sudo pip install Cython ;
sudo pip install nose ;
if test "$TRAVIS_OS_NAME" == "linux" ; then
pyenv global 3.6;
pip install --user Cython ;
pip install --user numpy ;
pip install --user nose ;
fi ;
fi
# then replace doxygen with the desided version
# I use 1.8.10 instead of 1.8.11 since it looks like 1.8.11 have troubles with
Expand Down Expand Up @@ -265,7 +268,9 @@ script:
done
fi
- if test "$PLUMED_CXX" ; then
nosetests -v -w python ;
if test "$TRAVIS_OS_NAME" == "linux" ; then
nosetests -v -w python ;
fi ;
fi

# CPPCHECK:
Expand Down

1 comment on commit 2e9b8ef

@PlumedBot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found spelling mistakes in documentation file tutorials/aaa-master-ISDD-1.txt<<
ISDD handson GitHub
Found spelling mistakes in documentation file tutorials/aaa-master-ISDD-2.txt<<
ISDD handson ISDD ISDD
Found spelling mistakes in documentation file tutorials/hrex.txt<<
dlb

Please sign in to comment.