forked from sunpy/sunkit-instruments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
93 lines (90 loc) · 2.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tox]
min_version = 4.0
requires =
tox-pypi-filter>=0.14
envlist =
py{310,311,312}{,-online}
py312-devdeps
py310-oldestdeps
codestyle
build_docs
[testenv]
pypi_filter = https://raw.githubusercontent.com/sunpy/sunpy/main/.test_package_pins.txt
allowlist_externals =
minimum_dependencies
# Run the tests in a temporary directory to make sure that we don't import
# the package from the source tree
change_dir = .tmp/{envname}
description =
run tests
devdeps: with the latest developer version of key dependencies
online: that require remote data
oldestdeps: with the oldest supported version of key dependencies
setenv =
COLUMNS = 180
PYTEST_COMMAND = pytest -vvv -s -raR --durations=25 --pyargs sunkit_instruments --cov-report=xml --cov=sunkit_instruments --cov-config={toxinidir}/setup.cfg {toxinidir}/docs
SUNPY_SAMPLEDIR = {env:SUNPY_SAMPLEDIR:{toxinidir}/.tox/{envname}/sample_data/}
PARFIVE_HIDE_PROGRESS = True
pass_env =
HOME
HTTP_PROXY
HTTPS_PROXY
NO_PROXY
CIRCLECI
# A variable to tell tests we are on a CI system
CI
# Custom compiler locations (such as ccache)
CC
# Location of locales (needed by sphinx on some systems)
LOCALE_ARCHIVE
# If the user has set a LC override we should follow it
LC_ALL
set_env =
MPLBACKEND = agg
devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
deps =
devdeps: git+https://github.com/sunpy/sunpy
# Handle minimum dependencies via minimum_dependencies
oldestdeps: minimum_dependencies
online: pytest-rerunfailures
online: pytest-timeout
extras =
all
tests
commands_pre =
oldestdeps: minimum_dependencies sunkit_instruments --filename requirements-min.txt
oldestdeps: pip install -r requirements-min.txt
pip freeze --all --no-input
commands =
# To amend the pytest command for different factors you can add a line
# which starts with a factor like `online: --remote-data=any \`
# If you have no factors which require different commands this is all you need:
pytest \
-vvv \
-r fEs \
--pyargs sunkit_instruments \
--cov-report=xml \
--cov=sunkit_instruments \
--cov-config={toxinidir}/.coveragerc \
{toxinidir}/docs \
online: --remote-data=any \
{posargs}
[testenv:codestyle]
pypi_filter =
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
[testenv:build_docs]
usedevelop = true
change_dir = docs
description = Invoke sphinx-build to build the HTML docs
extras =
all
docs
commands =
sphinx-build -j auto --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"))'