-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
38 lines (34 loc) · 945 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: python
matrix:
include:
- os: linux
python: 3.6
- os: linux
language: generic
env: PYTHON="3.7" MINICONDA_OS="Linux"
- os: linux
python: nightly
allow_failures:
- python: "nightly"
cache:
directories:
- $HOME/.cache/pip
- .hypothesis
before_install:
- if [[ $MINICONDA_OS ]]; then
URL="https://repo.continuum.io/miniconda/Miniconda3-latest-${MINICONDA_OS}-x86_64.sh";
wget "${URL}" -O miniconda.sh;
bash 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;
conda info -a;
conda create -q -n test-environment python=$PYTHON;
source activate test-environment;
fi;
install:
- pip install -e .;
- pip install mypy;
script:
- python -c "import ppb_mutant"