-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
78 lines (74 loc) · 2.41 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
[tox]
min_version = 4.0
requires =
tox-pypi-filter>=0.14
envlist =
py{310,311,312}
py312-devdeps
py310-oldestdeps
codestyle
build_docs
[testenv]
pypi_filter = https://raw.githubusercontent.com/sunpy/sunpy/main/.test_package_pins.txt
# 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
oldestdeps: with the oldest supported version of key dependencies
devdeps: with the latest developer version of key dependencies
pass_env =
# 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 =
# For packages which publish nightly wheels this will pull the latest nightly
devdeps: numpy>=0.0.dev0
# Packages without nightly wheels will be built from source like this
devdeps: git+https://github.com/sunpy/streamtracer.git
oldestdeps: minimum_dependencies
# The following indicates which extras_require will be installed
extras =
tests
commands_pre =
oldestdeps: minimum_dependencies sunkit_magex --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_magex \
--cov-report=xml \
--cov=sunkit_magex \
--cov-config={toxinidir}/.coveragerc \
{toxinidir}/docs \
{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]
description = invoke sphinx-build to build the HTML docs
change_dir =
docs
extras =
docs
commands =
sphinx-build --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs}