forked from multiscale/muscle3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
49 lines (42 loc) · 787 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tox]
envlist = py37, py38, py39, py310
skip_missing_interpreters = true
[testenv]
deps =
mypy
flake8
pytest
pytest-cov
ymmsl
passenv =
MUSCLE_TEST_PYTHON_ONLY
MUSCLE_DISABLE_FORTRAN
MUSCLE_ENABLE_CPP_MPI
MUSCLE_ENABLE_FORTRAN_MPI
commands =
mypy
pytest {posargs}
flake8 libmuscle/python/libmuscle integration_test scripts/
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[pycodestyle]
max-doc-length = 88
[testenv:docs]
description = Build documentation using Sphinx
basepython = python3
deps =
breathe
recommonmark
six
sphinx
sphinx-fortran
sphinx_rtd_theme
sphinx-click
sphinx-tabs
sphinx-toolbox
ymmsl
commands = sphinx-build docs/source docs/build -bhtml