-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (24 loc) · 729 Bytes
/
tox.ini
File metadata and controls
28 lines (24 loc) · 729 Bytes
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
###############################################################################
# Caleydo - Visualization for Molecular Biology - http://caleydo.org
# Copyright (c) The Caleydo Team. All rights reserved.
# Licensed under the new BSD license, available at http://caleydo.org/license
###############################################################################
[tox]
envlist = py{27,34}
[testenv]
basepython =
py27: python2.7
py34: python3.4
deps =
flake8
pytest
commands =
check-manifest --ignore tox.ini,tests*
python setup.py check -m -r -s
flake8 .
py.test tests
[flake8]
ignore=E111,E114,E501
exclude = .tox,*.egg,build,data,.git,__pycache__,docs,node_modules
[pytest]
testpaths = tests