-
Notifications
You must be signed in to change notification settings - Fork 13
/
tox.ini
31 lines (29 loc) · 868 Bytes
/
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
[tox]
envlist = py{38,39,310,311,312}-{test,docs,codestyle}-{dev}
requires = pip >= 18.0
setuptools >= 30.3.0
[testenv]
passenv =
HOME
changedir =
docs: docs
deps =
dev: git+https://github.com/astropy/astropy.git
dev: git+https://github.com/astropy/specutils.git
dev: git+https://github.com/astropy/regions.git
dev: git+https://github.com/glue-viz/glue.git
dev: git+https://github.com/glue-viz/glue-qt.git
dev: git+https://github.com/radio-astro-tools/spectral-cube.git
dev: git+https://github.com/radio-astro-tools/radio-beam.git
extras =
test: test
docs: docs
commands =
pip freeze
test: pytest glue_astronomy --cov glue_astronomy {posargs}
docs: sphinx-build -W -b html -d _build/doctrees . _build/html
[testenv:codestyle]
deps = flake8
skip_install = true
commands =
flake8 glue_astronomy