Skip to content

Commit

Permalink
Rename Tox env "flake8" to "style"
Browse files Browse the repository at this point in the history
It's a style check. True, it's currently implemented with flake8, but
that's just an implementation detail.
  • Loading branch information
suutari committed Jun 18, 2017
1 parent a966d4c commit 71d418c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,7 @@ language: python

matrix:
include:
- {env: TOXENV=flake8, python: "3.4"}
- {env: TOXENV=style, python: "3.4"}
- python: "2.7"
- python: "3.4"
- python: "3.5"
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,36,py}-pip{8,9,latest},flake8
envlist = style,py{27,34,35,36,py}-pip{8,9,latest}

[testenv]
deps =
Expand All @@ -12,7 +12,7 @@ commands =
py.test -ra -v --cov-config={toxinidir}/.coveragerc --strict \
--doctest-modules {posargs:--cov=prequ tests/ prequ/}

[testenv:flake8]
[testenv:style]
skip_install = True
basepython = python3.4
deps = -rrequirements-stylecheck.txt
Expand Down

0 comments on commit 71d418c

Please sign in to comment.