Skip to content

Commit

Permalink
Simplify test env.
Browse files Browse the repository at this point in the history
  • Loading branch information
shyuep committed Sep 26, 2018
1 parent c9e4cfb commit 5777678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
echo $HOME
# conda create --quiet --yes --name test_env python=3.6
source activate test_env
conda install --quiet --yes numpy scipy matplotlib sympy pandas cython
Expand All @@ -20,10 +19,8 @@ jobs:
conda install --quiet --yes cmake
# conda update --quiet --all
mkdir coverage_reports
pip install --upgrade pip
pip install --quiet --ignore-installed -r requirements.txt
pip install --quiet --ignore-installed -r requirements-optional.txt
pip install nose-timer
pip install --upgrade pip nose-timer
pip install --quiet --ignore-installed -r requirements.txt -r requirements-optional.txt
export CFLAGS=$CFLAGS" -std=gnu++11"
pip install BoltzTraP2
export CFLAGS=${CFLAGS%% -std=gnu++11}
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ env:
sudo: false
install:
- pip install numpy
- pip install -q -r requirements.txt
- pip install -q -r requirements-optional.txt
- pip install --quiet --ignore-installed -r requirements.txt -r requirements-optional.txt
- pip install nose-timer
- export CFLAGS=$CFLAGS" -std=gnu++11"
- travis_wait pip install BoltzTraP2
Expand Down

0 comments on commit 5777678

Please sign in to comment.