mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 00:41:00 +01:00
19 lines
643 B
YAML
19 lines
643 B
YAML
machine:
|
|
environment:
|
|
PATH: /home/ubuntu/miniconda/envs/test_env/bin:/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
|
|
- conda config --set always_yes yes --set changeps1 no
|
|
- conda update -q conda
|
|
- conda create -q -n test_env python=3.5 pygments prompt_toolkit ply pytest pytest-timeout psutil
|
|
- rm -rf ~/.pyenv
|
|
- rm -rf ~/virtualenvs
|
|
post:
|
|
- python setup.py install
|
|
|
|
test:
|
|
override:
|
|
- py.test --timeout=10
|