File: tox.ini

package info (click to toggle)
pygresql 1%3A5.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,468 kB
  • sloc: python: 14,213; ansic: 5,231; makefile: 165
file content (12 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# config file for tox

[tox]
envlist = py{26,27,33,34,35,36,37,38}

[testenv]
deps =
    py26: unittest2
commands =
    python setup.py clean --all build_ext --force --inplace --strict
    py26: unit2 discover {posargs}
    py{27,33,34,35,36,37,38}: python -m unittest discover {posargs}