mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
add circleci yml file
This commit is contained in:
parent
90a24d7275
commit
1461b41a29
2 changed files with 20 additions and 0 deletions
19
.circle.yml
Normal file
19
.circle.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
machine:
|
||||
environment:
|
||||
PATH: /home/ubuntu/miniconda/bin:$PATH
|
||||
|
||||
dependencies:
|
||||
pre:
|
||||
- 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 --set always_yes yes --set changeps1 no
|
||||
- conda update -q conda
|
||||
- conda info -a
|
||||
- conda create -q -n test_env python=3.5 pygments prompt_toolkit ply pytest pytest-timeout psutil
|
||||
- source activate test_env
|
||||
- python setup.py install
|
||||
|
||||
test:
|
||||
override:
|
||||
- py.test --timeout=10
|
1
circle.yml
Symbolic link
1
circle.yml
Symbolic link
|
@ -0,0 +1 @@
|
|||
.circle.yml
|
Loading…
Add table
Reference in a new issue