-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrequirements_test.txt
50 lines (34 loc) · 1.04 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
#### TESTING-RELATED PACKAGES ####
# Checks style, syntax, and other useful errors.
pylint==1.8.1
# 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