File: setup.cfg

package info (click to toggle)
python-caldav 1.3.9-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 640 kB
  • sloc: python: 6,824; makefile: 91; sh: 7
file content (24 lines) | stat: -rw-r--r-- 469 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
23
24
[tox:tox]
envlist = py37,py38,py39,py310,py311,docs,style

[testenv]
deps = --editable .[test]
commands = pytest {posargs:--cov}

[testenv:docs]
deps = sphinx
commands =
    sphinx-build -b doctest docs/source docs/build/doctest

[testenv:style]
deps = pre-commit
skip_install = true
commands = pre-commit run --all-files --show-diff-on-failure

[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1

[upload_sphinx]
upload-dir = docs/build/html