-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
164 lines (153 loc) · 3.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
[tox]
minversion = 3.24.4
requires=tox-conda==0.9.2
envlist =
build
docs
lint
test
#report
ignore_basepython_conflict = true
#[gh-actions]
#python =
# 3.6: py36
# 3.7: py37, build, docs
[testenv]
basepython =
{test,docs,build,prreqs,lint,radon}: {env:TOXPYTHON:python3}
passenv = *
[testenv:test]
usedevelop = false
conda_deps =
pytest
coverage
pytest-cov
mdanalysis==2
mdtraj>=1.9,<2
openmm>=7.6,<8
numpy>=1,<2
conda_channels =
conda-forge
omnia
defaults
commands_pre =
coverage erase
commands =
python -c "from mdtraj import version; print('mdtraj version: ', version.version)"
python -c "from openmm import version; print('openmm version: ', version.version)"
python -c "from MDAnalysis import version; print('MDAnalysis version: ', version.__version__)"
pytest --cov --cov-report=term-missing --cov-append --cov-config=.coveragerc -vv {posargs}
commands_post =
coverage report
coverage html
coverage xml
# separates lint from build env
[testenv:lint]
deps =
flake8>=3
flake8-docstrings
flake8-bugbear
pygments
isort==5
toml
skip_install = true
commands =
flake8 {posargs:src tests setup.py docs}
isort --verbose --check-only --diff {posargs:src tests setup.py}
[testenv:prreqs]
skip_install = true
commands = python {toxinidir}/devtools/check_changelog.py
[testenv:build]
# setenv here integrates with commit message in .bumpversion.cfg
# we can tests bump2version with an actual commit
setenv =
COMMIT_MSG = Test commit message
# dependencies needed for code quality checks
# you need to add here any additional dependencies you might need
deps =
setuptools
wheel
twine
docutils
check-manifest
readme-renderer
bump2version
skip_install = true
commands_pre = python {toxinidir}/devtools/clean_dist_check.py
commands =
python --version
python setup.py sdist bdist_wheel
twine check dist/*.whl
twine check dist/*.tar.gz
check-manifest {toxinidir}
bump2version --dry-run --verbose --allow-dirty patch
bump2version --dry-run --verbose --allow-dirty minor
bump2version --dry-run --verbose --allow-dirty major
commands_post = python {toxinidir}/devtools/clean_dist_check.py
[testenv:radon]
deps = radon
skip_install = true
commands =
radon cc -s --total-average --no-assert -nb {posargs:src tests}
radon mi -m -s {posargs:src tests}
[testenv:docs]
usedevelop = true
#skip_install = true
deps =
-r{toxinidir}/docs/requirements.txt
commands =
python --version
sphinx-build {posargs:-E} -b html docs dist/docs
#sphinx-build -b linkcheck docs dist/docs
# my favourite configuration for flake8 styling
# https://flake8.pycqa.org/en/latest/#
[flake8]
max_line_length = 80
hang-closing = true
ignore =
W293
W503
D412
D105
per-file-ignores = setup.py:E501
docstring-convention = numpy
exclude = src/taurenmd/__init__.py
# configuration for the isort module
# https://github.com/timothycrosley/isort
[isort]
skip = __init__.py
line_length = 80
indent = 4
multi_line_output = VERTICAL_HANGING_INDENT_BRACKET
include_trailing_comma = true
lines_after_imports = 2
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
#known_future_library=future,pies
#known_standard_library=std,std2
known_first_party = taurenmd
known_third_party =
MDAnalysis
mdtraj
numpy
simtk
pytest
[tool:pytest]
# If a pytest section is found in one of the possible config files
# (pytest.ini, tox.ini or setup.cfg), then pytest will not look for any others,
# so if you add a pytest config section elsewhere,
# you will need to delete this section from setup.cfg.
#norecursedirs =
#migrations
addopts = -p pytest_cov
python_files =
test_*.py
*_test.py
tests.py
#addopts =
# -ra
# --strict
# --doctest-modules
# --doctest-glob=\*.rst
# --tb=short
testpaths =
tests