1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/yaml/conflicting_triangle.yml
Ilan Schnell 2198e2b2ab Update tests/yaml/conflicting_triangle.yml
Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
2020-06-15 15:34:37 +08:00

21 lines
447 B
YAML

cases:
-
available:
- A 1.0.0; depends C == 1.0.0
- B 1.0.0; depends C == 2.0.0
- C 1.0.0
- C 2.0.0
request:
- install: A
- install: B
response:
- state:
- A 1.0.0
- C 1.0.0
- error:
code: 0
stderr: ['requirement c==1\.0\.0', 'is incompatible']
skip: old
# -- currently the error message is:
# a 1.0.0 has requirement C==1.0.0, but you'll have c 2.0.0 which is incompatible.