File: tox.ini

package info (click to toggle)
sagemath 8.6-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 113,052 kB
  • sloc: python: 996,064; cpp: 6,208; sh: 3,252; ansic: 3,226; objc: 1,407; makefile: 1,087; lisp: 5
file content (22 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist = py26, py27, py33, py34
skip_missing_interpreters=true

[testenv]
setenv =
    # We make it harder to get the encoding right by using the dumbest default
    LC_ALL = C
    SAGE_ROOT = {toxinidir}/..

[testenv:py26]
deps = unittest2 
commands = unit2 discover

[testenv:py27]
commands=python2.7 -m unittest discover

[testenv:py33]
commands=python3.3 -m unittest discover

[testenv:py34]
commands=python3.4 -m unittest discover