Skip to content

Commit

Permalink
Add regexlint to tox so linting can be done during development
Browse files Browse the repository at this point in the history
Tested on Windows.

Closes pygments#1556
  • Loading branch information
kurtmckee committed Sep 27, 2020
1 parent 9fca2a1 commit b505232
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tox.ini
@@ -1,8 +1,14 @@
[tox]
envlist = py35, py36, py37, py38, pypy3
envlist = py35, py36, py37, py38, pypy3, lint

[testenv]
deps =
pytest
pytest-cov
commands = py.test {posargs}


[testenv:lint]
deps =
regexlint
commands = regexlint pygments.lexers

0 comments on commit b505232

Please sign in to comment.