File: tox.ini

package info (click to toggle)
python-docx 0.8.11%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,640 kB
  • sloc: xml: 25,311; python: 21,911; makefile: 168
file content (43 lines) | stat: -rw-r--r-- 667 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Configuration for tox and pytest

[flake8]
exclude = dist,docs,*.egg-info,.git,ref,_scratch,.tox
max-line-length = 88

[pytest]
norecursedirs = doc docx *.egg-info features .git ref _scratch .tox
python_files = test_*.py
python_classes = Test Describe
python_functions = it_ they_ and_it_ but_it_

[tox]
envlist = py26, py27, py34, py35, py36, py38

[testenv]
deps =
    behave
    lxml
    pyparsing
    pytest

commands =
    py.test -qx
    behave --format progress --stop --tags=-wip

[testenv:py26]
deps =
    importlib>=1.0.3
    behave
    lxml
    mock
    pyparsing
    pytest

[testenv:py27]
deps =
    behave
    lxml
    mock
    pyparsing
    pytest