File: tox.ini

package info (click to toggle)
python-ssdeep 3.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: ansic: 1,614; cpp: 1,586; python: 590; makefile: 194; sh: 32
file content (19 lines) | stat: -rw-r--r-- 366 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
[tox]
envlist = py27,py34,py35,py36,py37,pypy,pypy3
isolated_build = True

[testenv]
deps =
    pytest
    coverage

commands =
    coverage run --parallel-mode -m pytest --capture=no --strict {posargs}
    coverage combine
    coverage report -m

[testenv:py27]
# Support for Python < 3.3 has been dropped with pytest >= 3.0.0
deps =
    pytest<=2.9.1
    coverage