File: tox.ini

package info (click to toggle)
storm 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,768 kB
  • sloc: python: 22,677; ansic: 1,648; makefile: 53
file content (32 lines) | stat: -rw-r--r-- 726 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tox]
envlist =
    py36-{cextensions,nocextensions}
    py37-{cextensions,nocextensions}
    py38-{cextensions,nocextensions}
    py39-{cextensions,nocextensions}
    py310-{cextensions,nocextensions}
    py311-{cextensions,nocextensions}
    py312-{cextensions,nocextensions}
    py313-{cextensions,nocextensions}
    py314-{cextensions,nocextensions}
    docs

[testenv]
deps =
    .[test]
passenv =
    STORM_TEST_RUNNER
    USER
setenv =
    cextensions: STORM_CEXTENSIONS = 1
    nocextensions: STORM_CEXTENSIONS = 0
commands =
    python dev/test {posargs}

[testenv:docs]
basepython =
    python3.13
commands =
    sphinx-build -b html -d storm/docs/_build/doctrees storm/docs storm/docs/_build/html
deps =
    .[doc]