-
Notifications
You must be signed in to change notification settings - Fork 6
/
tox.ini
164 lines (144 loc) · 3.5 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]
envlist =
coverage-clean
manifest
pyroma
flake8
doc8
readme
docs
py
coverage-report
[testenv]
commands = coverage run -p -m pytest --durations=20 {posargs:tests}
deps =
allennlp==0.9.0
coverage
h5py < 3.0.0
keras
matplotlib
networkx
nltk
numpy
overrides
pandas
pytest
sklearn
spacy==2.1.9
tensorflow
torch
transformers
wandb
# install_command = git clone https://github.com/ncbi-nlp/bluebert.git /tmp/blubert_repo/
install_command = pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.1.0/en_core_web_sm-2.1.0.tar.gz {packages}
# install_command = pip install https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.2.5/en_core_sci_sm-0.2.5.tar.gz {packages}
whitelist_externals =
/bin/cat
/bin/cp
/bin/mkdir
/usr/bin/git
[testenv:coverage-clean]
commands = coverage erase
deps = coverage
skip_install = true
[testenv:manifest]
commands = check-manifest
deps = check-manifest
skip_install = true
[testenv:pyroma]
commands = pyroma --min=10 .
deps =
pygments
pyroma
skip_install = true
description = Check how package-friendly the project is using Pyroma
[testenv:flake8]
commands =
flake8 src/contradictory_claims tests setup.py
deps =
flake8
flake8-bandit
flake8-builtins
flake8-bugbear
flake8-colors
flake8-commas
flake8-comprehensions
flake8-docstrings
flake8-import-order
flake8-print
flake8-use-fstring
pep8-naming
pydocstyle
skip_install = true
description = Run flake8 with several plugins (bandit, docstrings, import order, pep8 naming) to check code quality
[flake8]
ignore = S106, S403, S301
# Ignoring .format used (FS002), hardcoded passwords (S106), pickle security (S403,S301)
[testenv:doc8]
commands = doc8 docs/source/ README.rst
deps =
sphinx
doc8
skip_install = true
description = Run the doc8 tool to check the style of the RST files in the project docs.
[testenv:readme]
commands = rst-lint README.rst
deps =
restructuredtext_lint
pygments
skip_install = true
description = Run the rst-lint tool to check the style of the README.
[testenv:docs]
changedir = docs
extras =
docs
jupyter
grounding
commands =
mkdir -p {envtmpdir}
cp -r source {envtmpdir}/source
sphinx-build -W -b html -d {envtmpdir}/build/doctrees {envtmpdir}/source {envtmpdir}/build/html
sphinx-build -W -b coverage -d {envtmpdir}/build/doctrees {envtmpdir}/source {envtmpdir}/build/coverage
cat {envtmpdir}/build/coverage/c.txt
cat {envtmpdir}/build/coverage/python.txt
[testenv:coverage-report]
commands =
coverage combine
coverage report
deps = coverage
skip_install = true
####################
# Deployment tools #
####################
# TODO: Not sure what the configs below do yet. Unsure how to use bumpversion and how to deploy to PyPI
[testenv:bumpversion]
commands = bumpversion {posargs}
deps = bumpversion
passenv = HOME
skip_install = true
[testenv:build]
commands = python setup.py -q sdist bdist_wheel
deps =
wheel
setuptools
skip_install = true
[testenv:release]
commands =
{[testenv:build]commands}
twine upload --skip-existing dist/*
deps =
{[testenv:build]deps}
twine >= 1.5.0
skip_install = true
[testenv:finish]
deps =
{[testenv:build]deps}
{[testenv:release]deps}
bumpversion
commands =
bumpversion release
{[testenv:release]commands}
git push
bumpversion patch
git push
skip_install = true