forked from python-trio/trio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-requirements.in
34 lines (30 loc) · 968 Bytes
/
test-requirements.in
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
# For tests
pytest >= 5.0 # for faulthandler in core
pytest-cov >= 2.6.0
ipython # for the IPython traceback integration tests
pyOpenSSL # for the ssl tests
trustme # for the ssl tests
pylint # for pylint finding all symbols tests
jedi # for jedi code completion tests
# Tools
black; implementation_name == "cpython"
mypy; implementation_name == "cpython"
flake8
astor # code generation
# https://github.com/python-trio/trio/pull/654#issuecomment-420518745
typed_ast; implementation_name == "cpython"
mypy-extensions; implementation_name == "cpython"
typing-extensions; implementation_name == "cpython"
# Trio's own dependencies
cffi; os_name == "nt"
contextvars; python_version < "3.7"
attrs >= 19.2.0
sortedcontainers
async_generator >= 1.9
idna
outcome
sniffio
# Required by contextvars, but harmless to install everywhere.
# dependabot drops the contextvars dependency because it runs
# on 3.7.
immutables >= 0.6