forked from allenai/allennlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements_test.txt
52 lines (36 loc) · 1.22 KB
/
requirements_test.txt
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
#### TESTING-RELATED PACKAGES ####
# Checks style, syntax, and other useful errors.
# We need this commit because of https://github.com/PyCQA/pylint/pull/1430,
# unpin when pylint 1.7.3 is released.
git+git://github.com/PyCQA/pylint.git@2561f539d60a3563d6507e7a22e226fb10b58210
# We'll use pytest to run our tests; this isn't really necessary to run the code, but it is to run
# the tests. With this here, you can run the tests with `py.test` from the base directory.
pytest
# Static type checking
mypy
# Makes it so that pytest can handle the code structure we use, with src/main/python, and src/test.
pytest-pythonpath
# Allows generation of coverage reports with pytest.
pytest-cov
# Allows marking tests as flaky, to be rerun if they fail
flaky
# Allows codecov to generate coverage reports
coverage
codecov
# Required to run sanic tests
aiohttp
# Required to mock out `requests` calls
responses>=0.7
#### DOC-RELATED PACKAGES ####
# Builds our documentation.
sphinx==1.5.3
# Watches the documentation directory and rebuilds on changes.
sphinx-autobuild
# enables numpydoc formatting in sphinx
numpydoc
# doc theme
sphinx_rtd_theme
# Only used to convert our readme to reStructuredText on Pypi.
pypandoc
# Pypi uploads
twine