-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtox.ini
52 lines (49 loc) · 1.64 KB
/
tox.ini
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tox]
envlist =
py{310,311,312}{,-devdeps,-online}
build_docs
codestyle
isolated_build = true
[testenv]
whitelist_externals=
/bin/bash
/usr/bin/bash
changedir = .tmp/{envname}
description =
run tests
devdeps: with the latest developer version of key dependencies
online: that require remote data
setenv =
MPLBACKEND = agg
COLUMNS = 180
PYTEST_COMMAND = pytest -vvv -s -raR --pyargs irispy --cov-report=xml --cov=irispy {toxinidir}/docs
deps =
# All our tests run in parallel which this plugin allows us to.
pytest-xdist
# We check codecov in tox builds.
pytest-cov
# The devdeps factor is intended to be used to install the latest developer version of key dependencies.
devdeps: git+https://github.com/sunpy/sunraster
devdeps: git+https://github.com/sunpy/ndcube
# These are specific online extras we use to run the online tests.
online: pytest-timeout
extras =
dev
commands =
!online: {env:PYTEST_COMMAND} {posargs}
online: {env:PYTEST_COMMAND} --timeout=60 --remote-data=any {posargs}
[testenv:build_docs]
changedir = docs
description = Invoke sphinx-build to build the HTML docs
extras = dev
commands =
sphinx-build --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs}
python -c 'import pathlib; print("Documentation available under file://\{0\}".format(pathlib.Path(r"{toxinidir}") / "docs" / "_build" / "index.html"))'
[testenv:codestyle]
skip_install = true
description = Run all style and file checks with pre-commit
deps =
pre-commit
commands =
pre-commit install-hooks
pre-commit run --color always --all-files --show-diff-on-failure