Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc/docs env name confusion #42

Merged
merged 2 commits into from
Jan 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
- TOXENV=check
- TOXENV=docs
matrix:
include:
- python: '3.6'
Expand All @@ -17,7 +14,17 @@ matrix:
dist: xenial
sudo: required
env:
- TOXENV=py37,report,codecov,doc
- TOXENV=py37,report,codecov
- python: '3.7'
dist: xenial
sudo: required
env:
- TOXENV=doc
- python: '3.7'
dist: xenial
sudo: required
env:
- TOXENV=check
before_install:
- python --version
- uname -a
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
envlist =
clean,
check,
docs,
doc,
{py36,py37,pypy3},
report

[testenv]
basepython =
pypy3: {env:TOXPYTHON:pypy3}
{docs,spell}: {env:TOXPYTHON:python3.6}
{doc,spell}: {env:TOXPYTHON:python3.7}
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
{bootstrap,clean,check,report,codecov}: {env:TOXPYTHON:python3}
Expand Down