File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+ # Testing Python 3.7 requires using the `xenial` dist which uses
3
+ # virtual machines rather than LXC and tends to take longer, so
4
+ # use it only where necessary
2
5
matrix :
3
6
include :
4
7
- python : " 2.7"
@@ -9,17 +12,20 @@ matrix:
9
12
env : TOXENV=py35
10
13
- python : " 3.6"
11
14
env : TOXENV=py36
15
+ - python : " 3.7"
16
+ env : TOXENV=py37
17
+ dist : xenial
12
18
- python : " 3.6"
13
19
env : TOXENV=codestyle
14
20
before_install : true
15
21
16
22
before_install :
17
- - wget "https://dist.ipfs.io/go-ipfs/v0.4.14 /go-ipfs_v0.4.14_linux -amd64.tar.gz" -O /tmp/ipfs.tar.gz
23
+ - wget "https://dist.ipfs.io/go-ipfs/v0.4.18 /go-ipfs_v0.4.18_linux -amd64.tar.gz" -O /tmp/ipfs.tar.gz
18
24
- mkdir -p $HOME/bin
19
25
- pushd . && cd $HOME/bin && tar -xzvf /tmp/ipfs.tar.gz && popd
20
26
- export PATH="$HOME/bin/go-ipfs:$PATH"
21
27
22
28
install :
23
29
- pip install tox
24
30
25
- script : tox
31
+ script : tox
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ envlist =
4
4
py27,
5
5
py34,
6
6
py35,
7
- py36
7
+ py36,
8
+ py37
8
9
9
10
# Tox' sdist feature presumes that `./setup.py sdist` is available
10
11
# Disable this feature until PEP-517 is implemented by both tox and flit.
You can’t perform that action at this time.
0 commit comments