File: tox.ini

package info (click to toggle)
pycalendar 1%3A2.1~git20161130.0.e68e150-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,192 kB
  • ctags: 2,006
  • sloc: python: 13,418; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 374 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
; tox configuration file for running tests similar to buildbot builders.

[tox]
skip_missing_interpreters=True
toxworkdir=build/
envlist=
	py27-tests
	flake8

[testenv]
deps=
	tests: pytest
	tests: coverage
	tests: pytest-cov
	flake8: flake8

commands=
	tests: py.test --cov=src --cov-report=term --cov-report=html
	flake8: flake8 {posargs:src}

[flake8]
ignore = E501,F401