@@ -1276,8 +1276,10 @@ fn transitive_incompatible_with_transitive() {
1276
1276
/// │ └── python3.8
1277
1277
/// ├── root
1278
1278
/// │ └── requires a>=1.2.3
1279
+ /// │ ├── satisfied by a-1.2.3+bar
1279
1280
/// │ └── satisfied by a-1.2.3+foo
1280
1281
/// └── a
1282
+ /// ├── a-1.2.3+bar
1281
1283
/// └── a-1.2.3+foo
1282
1284
/// ```
1283
1285
#[ test]
@@ -1354,8 +1356,10 @@ fn local_greater_than() {
1354
1356
/// │ └── python3.8
1355
1357
/// ├── root
1356
1358
/// │ └── requires a<=1.2.3
1359
+ /// │ ├── satisfied by a-1.2.3+bar
1357
1360
/// │ └── satisfied by a-1.2.3+foo
1358
1361
/// └── a
1362
+ /// ├── a-1.2.3+bar
1359
1363
/// └── a-1.2.3+foo
1360
1364
/// ```
1361
1365
#[ test]
@@ -1523,8 +1527,10 @@ fn local_not_used_with_sdist() {
1523
1527
/// │ └── python3.8
1524
1528
/// ├── root
1525
1529
/// │ └── requires a==1.2.3
1530
+ /// │ ├── satisfied by a-1.2.3+bar
1526
1531
/// │ └── satisfied by a-1.2.3+foo
1527
1532
/// └── a
1533
+ /// ├── a-1.2.3+bar
1528
1534
/// └── a-1.2.3+foo
1529
1535
/// ```
1530
1536
#[ test]
@@ -1573,14 +1579,14 @@ fn local_simple() {
1573
1579
/// ├── a
1574
1580
/// │ ├── a-1.0.0
1575
1581
/// │ │ └── 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
1578
1584
/// │ └── a-2.0.0
1579
1585
/// │ └── requires b==2.0.0+bar
1580
1586
/// │ └── satisfied by b-2.0.0+bar
1581
1587
/// └── 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
1584
1590
/// ```
1585
1591
#[ test]
1586
1592
fn local_transitive_backtrack ( ) {
@@ -1637,8 +1643,8 @@ fn local_transitive_backtrack() {
1637
1643
/// │ └── requires b==2.0.0+bar
1638
1644
/// │ └── satisfied by b-2.0.0+bar
1639
1645
/// └── 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
1642
1648
/// ```
1643
1649
#[ test]
1644
1650
fn local_transitive_conflicting ( ) {
@@ -1687,9 +1693,11 @@ fn local_transitive_conflicting() {
1687
1693
/// │ └── a-1.0.0
1688
1694
/// │ └── requires b==2.0.0
1689
1695
/// │ ├── satisfied by b-2.0.0
1696
+ /// │ ├── satisfied by b-2.0.0+bar
1690
1697
/// │ └── satisfied by b-2.0.0+foo
1691
1698
/// └── b
1692
1699
/// ├── b-2.0.0
1700
+ /// ├── b-2.0.0+bar
1693
1701
/// └── b-2.0.0+foo
1694
1702
/// ```
1695
1703
#[ test]
@@ -1744,8 +1752,10 @@ fn local_transitive_confounding() {
1744
1752
/// ├── a
1745
1753
/// │ └── a-1.0.0
1746
1754
/// │ └── requires b>=2.0.0
1755
+ /// │ ├── satisfied by b-2.0.0+bar
1747
1756
/// │ └── satisfied by b-2.0.0+foo
1748
1757
/// └── b
1758
+ /// ├── b-2.0.0+bar
1749
1759
/// └── b-2.0.0+foo
1750
1760
/// ```
1751
1761
#[ test]
@@ -1803,6 +1813,7 @@ fn local_transitive_greater_than_or_equal() {
1803
1813
/// │ └── requires b>2.0.0
1804
1814
/// │ └── unsatisfied: no matching version
1805
1815
/// └── b
1816
+ /// ├── b-2.0.0+bar
1806
1817
/// └── b-2.0.0+foo
1807
1818
/// ```
1808
1819
#[ test]
@@ -1853,8 +1864,10 @@ fn local_transitive_greater_than() {
1853
1864
/// ├── a
1854
1865
/// │ └── a-1.0.0
1855
1866
/// │ └── requires b<=2.0.0
1867
+ /// │ ├── satisfied by b-2.0.0+bar
1856
1868
/// │ └── satisfied by b-2.0.0+foo
1857
1869
/// └── b
1870
+ /// ├── b-2.0.0+bar
1858
1871
/// └── b-2.0.0+foo
1859
1872
/// ```
1860
1873
#[ test]
@@ -1912,6 +1925,7 @@ fn local_transitive_less_than_or_equal() {
1912
1925
/// │ └── requires b<2.0.0
1913
1926
/// │ └── unsatisfied: no matching version
1914
1927
/// └── b
1928
+ /// ├── b-2.0.0+bar
1915
1929
/// └── b-2.0.0+foo
1916
1930
/// ```
1917
1931
#[ test]
@@ -1962,9 +1976,11 @@ fn local_transitive_less_than() {
1962
1976
/// ├── a
1963
1977
/// │ └── a-1.0.0
1964
1978
/// │ └── 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
1966
1981
/// └── b
1967
- /// └── b-2.0.0+foo
1982
+ /// ├── b-2.0.0+foo
1983
+ /// └── b-2.0.0+bar
1968
1984
/// ```
1969
1985
#[ test]
1970
1986
fn local_transitive ( ) {
0 commit comments