Marcel Telka
2024-04-02 8db23065144188b8af59b2020d42d303b0b20723
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
We do not have uv packaged yet.
 
--- build-1.2.1/pyproject.toml.orig
+++ build-1.2.1/pyproject.toml
@@ -50,7 +50,7 @@
   "sphinx-issues >= 3.0.0",
 ]
 test = [
-  "build[uv, virtualenv]",
+  "build[virtualenv]",
   "filelock >= 3",
   "pytest >= 6.2.4",
   "pytest-cov >= 2.12",
--- build-1.2.1/tests/test_env.py.orig
+++ build-1.2.1/tests/test_env.py
@@ -206,6 +206,7 @@
 
 @pytest.mark.parametrize('verbosity', range(4))
 @pytest.mark.skipif(IS_PYPY, reason='uv cannot find PyPy executable')
+@pytest.mark.skip(reason="we do not have uv packaged yet")
 def test_uv_impl_install_cmd_well_formed(
     mocker: pytest_mock.MockerFixture,
     verbosity: int,
@@ -237,7 +238,6 @@
         ('pip', 'venv+pip', False),
         ('pip', 'virtualenv+pip', True),
         ('pip', 'virtualenv+pip', None),  # Fall-through
-        ('uv', 'venv+uv', None),
     ],
     indirect=('has_virtualenv',),
 )
@@ -255,7 +255,6 @@
     'installer',
     [
         'pip',
-        pytest.param('uv', marks=pytest.mark.xfail(IS_PYPY and IS_WINDOWS, reason='uv cannot find PyPy executable')),
     ],
 )
 def test_requirement_installation(
@@ -266,6 +265,7 @@
         env.install([f'test-flit @ {Path(package_test_flit).as_uri()}'])
 
 
+@pytest.mark.skip(reason="we do not have uv packaged yet")
 def test_external_uv_detection_success(
     caplog: pytest.LogCaptureFixture,
     mocker: pytest_mock.MockerFixture,