Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

PR: Testing miniconda to install SciPy. #3

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
language: python

python:
- 2.7

before_install:
- wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda

install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib
- source activate test-environment
- conda install -c anaconda flake8=2.5.1
- pip install -r requirements.txt
- pip install coveralls
- python setup.py develop
Expand All @@ -9,6 +24,6 @@ script:
- flake8 .
- coverage run -m unittest discover
- coverage report

after_success:
- coveralls
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
long_description=README_TEXT,
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
entry_points={'simphony': ['tools = tools']},
entry_points={'simphony': ['tools = tools']},
)