forked from fsspec/s3fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (31 loc) · 852 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
sudo: False
language: generic
matrix:
include:
- env:
- PYVER=3.5
- env:
- PYVER=3.6
- env:
- PYVER=3.7
- env:
- PYVER=3.8
install:
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
# Install dependencies
- conda create -n test -y -c conda-forge python=$PYVER pip botocore pytest
- source activate test
- export BOTO_CONFIG=/dev/null
- export AWS_ACCESS_KEY_ID=foobar_key
- export AWS_SECRET_ACCESS_KEY=foobar_secret
- pip install moto
- pip install git+https://github.com/intake/filesystem_spec/ --no-deps
- conda list
script:
- py.test -vv s3fs
notifications:
email: false