Skip to content

Commit 9886130

Browse files
committed
Fix doc/docs env name confusion
1 parent c23ccc1 commit 9886130

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ env:
77
- SEGFAULT_SIGNALS=all
88
matrix:
99
- TOXENV=check
10-
- TOXENV=docs
1110
matrix:
1211
include:
1312
- python: '3.6'
@@ -17,7 +16,12 @@ matrix:
1716
dist: xenial
1817
sudo: required
1918
env:
20-
- TOXENV=py37,report,codecov,doc
19+
- TOXENV=py37,report,codecov
20+
- python: '3.7'
21+
dist: xenial
22+
sudo: required
23+
env:
24+
- TOXENV=doc
2125
before_install:
2226
- python --version
2327
- uname -a

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
envlist =
55
clean,
66
check,
7-
docs,
7+
doc,
88
{py36,py37,pypy3},
99
report
1010

1111
[testenv]
1212
basepython =
1313
pypy3: {env:TOXPYTHON:pypy3}
14-
{docs,spell}: {env:TOXPYTHON:python3.6}
14+
{doc,spell}: {env:TOXPYTHON:python3.7}
1515
py36: {env:TOXPYTHON:python3.6}
1616
py37: {env:TOXPYTHON:python3.7}
1717
{bootstrap,clean,check,report,codecov}: {env:TOXPYTHON:python3}

0 commit comments

Comments
 (0)