Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Kurečka
Plumed AlphaFold
Commits
2e9b8ef8
There was an error fetching the commit references. Please try again later.
Commit
2e9b8ef8
authored
5 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Patches
Plain Diff
Remove python test on homebrew
parent
367d7dc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+11
-6
11 additions, 6 deletions
.travis.yml
with
11 additions
and
6 deletions
.travis.yml
+
11
−
6
View file @
2e9b8ef8
...
...
@@ -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
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment