File: tox.ini

package info (click to toggle)
python-ddt 1.7.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: python: 785; makefile: 147; sh: 11
file content (29 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tox]
envlist = py36,py37,py38,py39,py310

[testenv]
deps = 
    pytest
    pytest-cov
    coverage
    aiounittest
    flake8
    six>=1.4.0
    PyYAML
commands = 
    pytest --cov=ddt --cov-report html
    flake8 ddt.py test

[flake8]
max-line-length = 127
exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,.tox,.venv
max-complexity = 10

[gh-actions]
python = 
  3.8: py38
  3.6: py36
  3.7: py37
  3.8: py38
  3.9: py39
  3.10: py310