-
Notifications
You must be signed in to change notification settings - Fork 65
/
tox.ini
52 lines (49 loc) · 1.35 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{38,39,310,311,312}-test{,-dev,-noviz,-viz,-viz_extra,-cov,-noopenfiles}
build_docs
codestyle
requires =
setuptools >= 30.3.0
pip >= 19.3.1
set_env =
casa: PIP_EXTRA_INDEX_URL = {env:PIP_EXTRA_INDEX_URL:https://casa-pip.nrao.edu/repository/pypi-group/simple}
[testenv]
passenv = HOME,DISPLAY,LC_ALL,LC_CTYPE,ON_TRAVIS
changedir = .tmp/{envname}
description = run tests with pytest
deps =
casa: numpy<2.0.0
casa: scipy
casa: matplotlib
casa: casatools
casa: casatasks
extras =
test
dev: dev
viz: viz
viz_extra: viz_extra
noviz: noviz
cov: cov
latest: latest
commands =
dev: pip install -U -i https://pypi.anaconda.org/astropy/simple astropy --pre
pip freeze
!cov-!noopenfiles: pytest --pyargs spectral_cube {toxinidir}/docs {posargs}
noopenfiles: pytest --pyargs spectral_cube {toxinidir}/docs {posargs}
cov: pytest --pyargs spectral_cube {toxinidir}/docs --cov spectral_cube --cov-config={toxinidir}/setup.cfg {posargs}
cov: coverage xml -o {toxinidir}/coverage.xml
[testenv:build_docs]
changedir =
docs
description =
invoke sphinx-build to build the HTML docs
extras =
docs
commands =
sphinx-build -W -b html . _build/html {posargs}
[testenv:codestyle]
deps = flake8
skip_install = true
commands =
flake8 --max-line-length=100 spectral_cube