Skip to content

Commit 1826ee0

Browse files
author
python-desert
authored
Fix doc/docs env name confusion
2 parents c23ccc1 + 36ea7b3 commit 1826ee0

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.travis.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ env:
55
global:
66
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
77
- SEGFAULT_SIGNALS=all
8-
matrix:
9-
- TOXENV=check
10-
- TOXENV=docs
118
matrix:
129
include:
1310
- python: '3.6'
@@ -17,7 +14,17 @@ matrix:
1714
dist: xenial
1815
sudo: required
1916
env:
20-
- TOXENV=py37,report,codecov,doc
17+
- TOXENV=py37,report,codecov
18+
- python: '3.7'
19+
dist: xenial
20+
sudo: required
21+
env:
22+
- TOXENV=doc
23+
- python: '3.7'
24+
dist: xenial
25+
sudo: required
26+
env:
27+
- TOXENV=check
2128
before_install:
2229
- python --version
2330
- 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)