summaryrefslogtreecommitdiff
path: root/tox.ini
AgeCommit message (Collapse)Author
2024-02-16tox: fix for meson portSam James
Signed-off-by: Sam James <sam@gentoo.org>
2024-01-19tox: update implsSam James
Signed-off-by: Sam James <sam@gentoo.org>
2022-05-19tox.ini, github: add Python 3.10 final, add Python 3.11Sam James
Signed-off-by: Sam James <sam@gentoo.org>
2021-09-20tox: Update tested implementation listMatt Turner
Signed-off-by: Matt Turner <mattst88@gentoo.org>
2020-04-24Disable testing on py27Michał Górny
sys-apps/portage is no longer installed for py27, and the tests use global installation. Signed-off-by: Michał Górny <mgorny@gentoo.org>
2020-01-26tox: Update tested implementation listMichał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2018-08-14Add (and fix) flake8 checks in toxVirgil Dupras
Add config in tox to run flake8 checks. For now, only "F*" errors are checked (errors reported by pyflakes). pep8 style checks are ignored for now. This is accompanied by changes in the code that are necessary to silence these errors. Most of them were about unused imports, but also unsed referenced and even undefined ones (meaning that this code path was broken, gotta increase test coverage). This setup will replace pylint which reports way too many errors to be usable (see next commit).
2018-08-14Add tox.iniVirgil Dupras
The goal is for the `tox` command to be the only command to run to verify the quality of the code before a commit.