blob: 7e5c6603ab31b430ec3e73803f786917370079f3 (
plain)
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
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
-c pins.pip
# The pytest specifics used by coverage.py
# "make upgrade" turns this into requirements/pytest.pip.
flaky
hypothesis
pytest
pytest-xdist
# Use a fork of PyContracts that supports Python 3.9
#PyContracts==1.8.12
# git+https://github.com/slorg1/contracts@collections_and_validator
https://github.com/slorg1/contracts/archive/c5a6da27d4dc9985f68e574d20d86000880919c3.zip
# Pytest has a windows-only dependency on colorama:
# https://github.com/pytest-dev/pytest/blob/main/setup.cfg#L49
# colorama;sys_platform=="win32"
# We copy it here so it can get pinned.
colorama
# Pytest has a windows-only dependency on atomicwrites:
# https://github.com/pytest-dev/pytest/blob/7.1.2/setup.cfg#L50
# atomicwrites>=1.0;sys_platform=="win32"
# though it's been removed on main.
atomicwrites>=1.0
|