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
|
-r deploy-requirements.in
-r pylib/vcsreplicator/requirements.in
# Used by docker.py.
backports.lzma
# So we can obtain code coverage.
coverage
# Used by docker.py.
docker
# For code linting.
flake8
# Used by ansible plugin.
lockfile
# Used by docker.py.
mechanize
# Used for testing.
nose
# Used for color in test suite
Pygments==2.3.1
# Used for testing.
pytest
# Used in a variety of places.
python-hglib
# Needed for tests using LDAP.
python-ldap
# Used for some Python unit tests.
responses
# used by mozhghooks/exceptional_push unit tests
sentry-sdk
|