1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# the bare requirements for running tests
# pyftpdlib is needed to spawn a FTP server for the
# FTPFS test suite
pyftpdlib ~=1.5
# these are optional dependencies for pyftpdlib that
# are not explicitly listed, we need to install these
# ourselves
psutil ~=5.0
pysendfile ~=2.0 ; python_version <= "3.3"
# mock is only available from Python 3.3 onward, and
# mock v4+ doesn't support Python 2.7 anymore
mock ~=3.0 ; python_version < "3.3"
# parametrized to prevent code duplication in tests.
parameterized ~=0.8
|