-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
27 lines (27 loc) · 1016 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
dist: trusty
sudo: false
language: python
before_install:
- export MPLBACKEND='Agg'
- wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- export MINICONDA_PREFIX="$HOME/miniconda"
- bash miniconda.sh -b -p $MINICONDA_PREFIX
- export PATH="$MINICONDA_PREFIX/bin:$PATH"
- conda config --set always_yes yes
- conda update -q conda
- conda info -a
install:
- wget -q https://data.qiime2.org/distro/core/qiime2-2021.2-py36-linux-conda.yml
- conda env create -q -n test-env --file qiime2-2021.2-py36-linux-conda.yml
- source activate test-env
- conda install -q -y pytest-cov regex dask
- conda install -q -y -c conda-forge -c bioconda -c qiime2 -c defaults xmltodict
- pip install -q flake8 coveralls
- pip install -q git+https://github.com/bokulich-lab/[email protected]
- pip install -q https://github.com/qiime2/q2lint/archive/master.zip
- pip install . --no-deps
- make install
script:
- make test-cov
after_success:
- coveralls