diff options
author | John Villalovos <john@sodarock.com> | 2023-02-05 13:36:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 21:36:26 +0000 |
commit | fde2495dd1e97fd2f0e91063946bb08490b3952c (patch) | |
tree | a8c25c4f2bde51fb2ba576838840dfc389e4a801 | |
parent | f711d9e2bf78f58cee6a7c5893d4acfd2f980397 (diff) | |
download | gitlab-fde2495dd1e97fd2f0e91063946bb08490b3952c.tar.gz |
chore: remove `pre-commit` as a default `tox` environment (#2470)
For users who use `tox` having `pre-commit` as part of the default
environment list is redundant as it will run the same tests again that
are being run in other environments. For example: black, flake8,
pylint, and more.
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ minversion = 1.6 skipsdist = True skip_missing_interpreters = True -envlist = py310,py39,py38,py37,flake8,black,twine-check,mypy,isort,cz,pylint,pre-commit +envlist = py310,py39,py38,py37,flake8,black,twine-check,mypy,isort,cz,pylint [testenv] passenv = |