forked from e-koch/FilFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (45 loc) · 889 Bytes
/
tox.ini
File metadata and controls
48 lines (45 loc) · 889 Bytes
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
[tox]
envlist =
py{36,37,38}-test{,-all,-dev}
build_docs
codestyle
requires =
setuptools >= 30.3.0
pip >= 19.3.1
isolated_build = true
[testenv]
passenv =
HOME
DISPLAY
LC_ALL
LC_CTYPE
ON_TRAVIS
WINDIR
setenv =
MPLBACKEND = Agg
changedir =
.tmp/{envname}
description =
run tests with pytest
deps =
dev: git+https://github.com/astropy/astropy#egg=astropy
extras =
test
all: all
commands =
pip freeze
pytest --open-files --pyargs fil_finder {toxinidir}/docs --cov fil_finder --cov-config={toxinidir}/setup.cfg {posargs}
[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 fil_finder