Skip to content

Commit

Permalink
update circle
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Jun 27, 2019
1 parent 25052b9 commit 200e241
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 22 deletions.
21 changes: 0 additions & 21 deletions .circle.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2

jobs:
build:
machine: true
steps:
- checkout
- run:
name: install miniconda
command: |
export PATH="$HOME/miniconda/bin:$PATH"
rm -rf ~/virtualenvs
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
hash -r
conda config --add channels conda-forge
conda config --set always_yes yes --set changeps1 no
conda install --file requirements/tests.txt
pip install xonda
- run:
name: tests
command: |
export PATH="$HOME/miniconda/bin:$PATH"
git config --global user.name "Anthony Scopatz"
git config --global user.email scopatz@gmail.com
pytest -v ./tests/
workflows:
version: 2
run_all:
jobs:
- build
2 changes: 1 addition & 1 deletion circle.yml

0 comments on commit 200e241

Please sign in to comment.