1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/yaml/fallback.yml
2020-06-15 15:34:34 +08:00

21 lines
462 B
YAML

base:
available:
- A 1.0.0; depends B == 1.0.0, C == 1.0.0
- A 0.8.0
- B 1.0.0; depends D == 1.0.0
- C 1.0.0; depends D == 2.0.0
- D 1.0.0
- D 2.0.0
cases:
-
request:
- install: A
response:
- state:
- A 0.8.0
# the old resolver tries to install A 1.0.0 (which fails), but the new
# resolver realises that A 1.0.0 cannot be installed and falls back to
# installing the older version A 0.8.0 instead.
skip: old