1# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
3
4[tox]
5envlist = py{27,35,36,37,38,sys}
6toxworkdir = {toxinidir}/.tox/wheels
7
8[testenv]
9deps =
10    -rrequirements/wheel.pip
11
12commands =
13    python -c "import sys; print(sys.real_prefix)"
14    python setup.py bdist_wheel {posargs}
15
16[testenv:py27]
17basepython = python2.7
18
19[testenv:pysys]
20# For building with the Mac Framework Python.
21basepython = /usr/bin/python
22