mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
Andrew Senetar
d539517525
- Merge windows requirements into requirements.txt and requirements-extra.txt - Update tox.ini to always use build.py - Update build.py to have module only option - Update tox.ini to text python 3.9 - Update .travis.yml to test 3.8 and 3.9 on newer Ubuntu LTS -Update .travis.yml to work with changes to windows tox (also update windows to 3.8)
22 lines
451 B
INI
22 lines
451 B
INI
[tox]
|
|
envlist = py36,py37,py38,py39
|
|
skipsdist = True
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHON="{envpython}"
|
|
commands =
|
|
python build.py --modules
|
|
flake8
|
|
{posargs:py.test core hscommon}
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/requirements-extra.txt
|
|
|
|
[flake8]
|
|
exclude = .tox,env,build,cocoalib,cocoa,help,./qt/dg_rc.py,cocoa/run_template.py,./pkg
|
|
max-line-length = 120
|
|
ignore = E731,E203,E501,W503
|
|
|