2013-11-01 22:34:18 +00:00
[tox]
2017-01-23 14:54:43 +00:00
envlist = py{26,27,32,33,34,35,36}-{with,without}_coverage
2013-11-01 22:34:18 +00:00
[testenv]
2017-07-05 10:10:33 +00:00
install_command =
pip install -vvv {opts} {packages}
2014-04-18 23:28:37 +00:00
; setenv =
; ; The following two flags are a workaround for an issue with building
; ; Python extensions on OSX with xcode 5.1.
; ; See: http://stackoverflow.com/questions/22313407/
2014-04-18 23:19:43 +00:00
; CFLAGS=-Qunused-arguments
; CPPFLAGS=-Qunused-arguments
2013-11-01 22:34:18 +00:00
deps =
2015-02-13 17:07:17 +00:00
; use specific versions of testing tools with which this is known to work
2016-08-18 17:23:02 +00:00
with_coverage: coverage = =3.7.1
2015-09-19 13:50:31 +00:00
py26: unittest2 = =1.1.0
py{26,27,32}: mock = =1.3.0
2015-02-13 17:07:17 +00:00
; use the latest version of BioPython
2017-01-23 14:54:43 +00:00
py{27,33,34,35,36}: biopython
2015-02-02 01:37:26 +00:00
whitelist_externals =
mv
2017-07-06 07:58:06 +00:00
; cat
; find
2014-04-12 10:10:52 +00:00
commands =
2015-02-13 17:07:17 +00:00
; Notes:
; * run tests both with and without the C extensions (including Cython)
; * if running with coverage, merge the coverage run results from both runs
; * for Python 2.6 use the unit2 script since -m unittest2 doesn't work
; (but when running with coverage, coverage run -m unittest2 works)
2017-07-06 07:58:06 +00:00
; find {envlogdir} -type f -name '*.log' -printf "\n%p\n" -exec cat \{\} \;
; echo "++++++++++++++++++++++++++++++++++++++"
2015-02-07 11:18:02 +00:00
py26-without_coverage: {envbindir}/unit2 discover tests -t {toxinidir}
py26-with_coverage: {envbindir}/coverage run --source = fuzzysearch -m unittest2 discover tests
2017-01-23 14:54:43 +00:00
py{27,32,33,34,35,36}-without_coverage: {envpython} -m unittest discover tests
py{27,32,33,34,35,36}-with_coverage: {envbindir}/coverage run --source = fuzzysearch -m unittest discover tests
2015-02-07 11:18:02 +00:00
with_coverage: mv .coverage .coverage.with_extensions
2017-07-05 09:07:59 +00:00
{envpython} -c 'import os; [os.remove(os.path.join(d, fn)) for (d, dns, fns) in os.walk(os.path.join(r"{envsitepackagesdir}", "fuzzysearch")) for fn in fns if fn.endswith(".so")]'
2015-02-07 11:18:02 +00:00
py26-without_coverage: {envbindir}/unit2 discover tests -t {toxinidir}
py26-with_coverage: {envbindir}/coverage run --source = fuzzysearch -m unittest2 discover tests
2017-01-23 14:54:43 +00:00
py{27,32,33,34,35,36}-without_coverage: {envpython} -m unittest discover tests
py{27,32,33,34,35,36}-with_coverage: {envbindir}/coverage run --source = fuzzysearch -m unittest discover tests
2015-02-07 11:18:02 +00:00
with_coverage: mv .coverage .coverage.no_extensions
with_coverage: {envbindir}/coverage combine
2015-09-16 18:46:36 +00:00
basepython =
py26: python2.6
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
2017-01-23 14:54:43 +00:00
py36: python3.6