File: tox.ini

package info (click to toggle)
bootstrap-flask 2.2.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 25,396 kB
  • sloc: python: 2,218; makefile: 24
file content (33 lines) | stat: -rw-r--r-- 584 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
33
[tox]
envlist = py37, py38, py39, py310, flake8, docs
skip_missing_interpreters = true

[gh-actions]
python =
    3.7: py37
    3.8: py38
    3.9: py39
    3.10: py310

[testenv]
deps =
    -r requirements/tests.txt
commands =
    pytest

[testenv:flake8]
deps =
    -r requirements/style.txt
commands =
    flake8 flask_bootstrap tests

[testenv:covarage]
deps =
    -r requirements/tests.txt
commands =
    pytest --cov=flask_bootstrap --cov-branch

[testenv:docs]
deps =
    -r requirements/docs.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html