Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/build/tox.ini
4013 views
1
[tox]
2
envlist = py27, py34, py35, py36, py37, py38, py39, py310
3
skip_missing_interpreters=true
4
5
[testenv]
6
setenv =
7
# We make it harder to get the encoding right by using the dumbest default
8
LC_ALL = C
9
SAGE_ROOT = {toxinidir}/..
10
11
[testenv:py27]
12
commands=python2.7 -m unittest discover
13
14
[testenv:py34]
15
commands=python3.4 -m unittest discover
16
17
[testenv:py35]
18
commands=python3.5 -m unittest discover
19
20
[testenv:py36]
21
commands=python3.6 -m unittest discover
22
23
[testenv:py37]
24
commands=python3.7 -m unittest discover
25
26
[testenv:py38]
27
commands=python3.8 -m unittest discover
28
29
[testenv:py39]
30
commands=python3.9 -m unittest discover
31
32
[testenv:py310]
33
commands=python3.10 -m unittest discover
34
35