summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.zuul.yaml4
-rw-r--r--tox.ini4
2 files changed, 4 insertions, 4 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index d4a4151d5..c1f155144 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -203,7 +203,7 @@
jobs:
- zuul-build-image
- zuul-tox-docs
- - tox-pep8
+ - tox-linters
- tox-py35:
irrelevant-files:
- zuul/cmd/migrate.py
@@ -259,7 +259,7 @@
jobs:
- zuul-upload-image
- zuul-tox-docs
- - tox-pep8
+ - tox-linters
- tox-py35:
irrelevant-files:
- zuul/cmd/migrate.py
diff --git a/tox.ini b/tox.ini
index 485bf10c9..103a92cf7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
minversion = 3.2
skipsdist = True
-envlist = pep8,py3{-docker}
+envlist = linters,py3{-docker}
ignore_basepython_conflict = True
# TODO(stephenfin): It would be good to set 'requires = tox-docker', but doing
# so borks the tools/pip.sh wrapper we're using here and probably isn't what
@@ -45,7 +45,7 @@ install_command = pip install {opts} {packages}
deps = bindep
commands = bindep test
-[testenv:pep8]
+[testenv:linters]
install_command = pip install {opts} {packages}
# --ignore-missing-imports tells mypy to not try to follow imported modules
# out of the current tree. As you might expect, we don't want to run static