Skip to content

Commit e3eefcc

Browse files
committed
Add more versions
1 parent 6562100 commit e3eefcc

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

crates/uv/tests/it/pip_install_scenarios.rs

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,8 +1276,10 @@ fn transitive_incompatible_with_transitive() {
12761276
/// │ └── python3.8
12771277
/// ├── root
12781278
/// │ └── requires a>=1.2.3
1279+
/// │ ├── satisfied by a-1.2.3+bar
12791280
/// │ └── satisfied by a-1.2.3+foo
12801281
/// └── a
1282+
/// ├── a-1.2.3+bar
12811283
/// └── a-1.2.3+foo
12821284
/// ```
12831285
#[test]
@@ -1354,8 +1356,10 @@ fn local_greater_than() {
13541356
/// │ └── python3.8
13551357
/// ├── root
13561358
/// │ └── requires a<=1.2.3
1359+
/// │ ├── satisfied by a-1.2.3+bar
13571360
/// │ └── satisfied by a-1.2.3+foo
13581361
/// └── a
1362+
/// ├── a-1.2.3+bar
13591363
/// └── a-1.2.3+foo
13601364
/// ```
13611365
#[test]
@@ -1523,8 +1527,10 @@ fn local_not_used_with_sdist() {
15231527
/// │ └── python3.8
15241528
/// ├── root
15251529
/// │ └── requires a==1.2.3
1530+
/// │ ├── satisfied by a-1.2.3+bar
15261531
/// │ └── satisfied by a-1.2.3+foo
15271532
/// └── a
1533+
/// ├── a-1.2.3+bar
15281534
/// └── a-1.2.3+foo
15291535
/// ```
15301536
#[test]
@@ -1573,14 +1579,14 @@ fn local_simple() {
15731579
/// ├── a
15741580
/// │ ├── a-1.0.0
15751581
/// │ │ └── requires b==2.0.0
1576-
/// │ │ ├── satisfied by b-2.0.0+foo
1577-
/// │ │ └── satisfied by b-2.0.0+bar
1582+
/// │ │ ├── satisfied by b-2.0.0+bar
1583+
/// │ │ └── satisfied by b-2.0.0+foo
15781584
/// │ └── a-2.0.0
15791585
/// │ └── requires b==2.0.0+bar
15801586
/// │ └── satisfied by b-2.0.0+bar
15811587
/// └── b
1582-
/// ├── b-2.0.0+foo
1583-
/// └── b-2.0.0+bar
1588+
/// ├── b-2.0.0+bar
1589+
/// └── b-2.0.0+foo
15841590
/// ```
15851591
#[test]
15861592
fn local_transitive_backtrack() {
@@ -1637,8 +1643,8 @@ fn local_transitive_backtrack() {
16371643
/// │ └── requires b==2.0.0+bar
16381644
/// │ └── satisfied by b-2.0.0+bar
16391645
/// └── b
1640-
/// ├── b-2.0.0+foo
1641-
/// └── b-2.0.0+bar
1646+
/// ├── b-2.0.0+bar
1647+
/// └── b-2.0.0+foo
16421648
/// ```
16431649
#[test]
16441650
fn local_transitive_conflicting() {
@@ -1687,9 +1693,11 @@ fn local_transitive_conflicting() {
16871693
/// │ └── a-1.0.0
16881694
/// │ └── requires b==2.0.0
16891695
/// │ ├── satisfied by b-2.0.0
1696+
/// │ ├── satisfied by b-2.0.0+bar
16901697
/// │ └── satisfied by b-2.0.0+foo
16911698
/// └── b
16921699
/// ├── b-2.0.0
1700+
/// ├── b-2.0.0+bar
16931701
/// └── b-2.0.0+foo
16941702
/// ```
16951703
#[test]
@@ -1744,8 +1752,10 @@ fn local_transitive_confounding() {
17441752
/// ├── a
17451753
/// │ └── a-1.0.0
17461754
/// │ └── requires b>=2.0.0
1755+
/// │ ├── satisfied by b-2.0.0+bar
17471756
/// │ └── satisfied by b-2.0.0+foo
17481757
/// └── b
1758+
/// ├── b-2.0.0+bar
17491759
/// └── b-2.0.0+foo
17501760
/// ```
17511761
#[test]
@@ -1803,6 +1813,7 @@ fn local_transitive_greater_than_or_equal() {
18031813
/// │ └── requires b>2.0.0
18041814
/// │ └── unsatisfied: no matching version
18051815
/// └── b
1816+
/// ├── b-2.0.0+bar
18061817
/// └── b-2.0.0+foo
18071818
/// ```
18081819
#[test]
@@ -1853,8 +1864,10 @@ fn local_transitive_greater_than() {
18531864
/// ├── a
18541865
/// │ └── a-1.0.0
18551866
/// │ └── requires b<=2.0.0
1867+
/// │ ├── satisfied by b-2.0.0+bar
18561868
/// │ └── satisfied by b-2.0.0+foo
18571869
/// └── b
1870+
/// ├── b-2.0.0+bar
18581871
/// └── b-2.0.0+foo
18591872
/// ```
18601873
#[test]
@@ -1912,6 +1925,7 @@ fn local_transitive_less_than_or_equal() {
19121925
/// │ └── requires b<2.0.0
19131926
/// │ └── unsatisfied: no matching version
19141927
/// └── b
1928+
/// ├── b-2.0.0+bar
19151929
/// └── b-2.0.0+foo
19161930
/// ```
19171931
#[test]
@@ -1962,9 +1976,11 @@ fn local_transitive_less_than() {
19621976
/// ├── a
19631977
/// │ └── a-1.0.0
19641978
/// │ └── requires b==2.0.0
1965-
/// │ └── satisfied by b-2.0.0+foo
1979+
/// │ ├── satisfied by b-2.0.0+foo
1980+
/// │ └── satisfied by b-2.0.0+bar
19661981
/// └── b
1967-
/// └── b-2.0.0+foo
1982+
/// ├── b-2.0.0+foo
1983+
/// └── b-2.0.0+bar
19681984
/// ```
19691985
#[test]
19701986
fn local_transitive() {

0 commit comments

Comments
 (0)