File: tox.ini

package info (click to toggle)
fastchunking 0.0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 300 kB
  • sloc: cpp: 490; python: 384; makefile: 197
file content (22 lines) | stat: -rw-r--r-- 451 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
[tox]
envlist = py35

[pytest]
python_files=fastchunking/test.py
testpaths=fastchunking
python_functions=test_

[testenv]
deps=-rrequirements.txt
setenv=
    PYTHONWARNINGS=all
commands=
	{envbindir}/python setup.py develop
	py.test --cov=fastchunking

[testenv:py35]
# the latest pybindgen release on pip (0.17) is not compatible to python 3.5 yet
deps=git+https://github.com/gjcarneiro/pybindgen.git
	pytest>=2.9.2
	coverage>=4.1
	pytest-cov>=2.2.1