File: tox.ini

package info (click to toggle)
paleomix 1.2.13.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,804 kB
  • sloc: python: 28,145; sh: 477; makefile: 184
file content (25 lines) | stat: -rw-r--r-- 676 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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py27

[testenv]
changedir = tests

commands =
    ./setup.sh
    nosetests --with-coverage --cover-erase --cover-inclusive --cover-tests \
        --cover-package paleomix .

deps =
    nose
    coverage
    flexmock

# Workaround for tox not installing paleomix itself on first run
# https://bitbucket.org/hpk42/tox/issues/176/tox-doesnt-install-the-package-being
install_command =
	pip install -U {opts} {packages}