1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Requirements file for tests
pytest == 7.4.2; python_version >= '3.7'
pytest == 7.0.1; python_version == '3.6'
pytest < 5.0.0; python_version < '3.6'
pytest-cov == 4.1.0; python_version >= '3.7'
pytest-cov == 4.0.0; python_version == '3.6'
pytest-cov == 2.12.1; python_version < '3.6'
coverage == 7.3.1; python_version >= '3.8'
coverage == 7.2.7; python_version == '3.7'
coverage == 6.2.0; python_version == '3.6'
coverage == 5.5; python_version < '3.6'
pytest-mock == 3.11.1; python_version >= '3.7'
pytest-mock == 3.6.1; python_version == '3.6'
pytest-mock == 1.12.1; python_version < '3.6'
|