summaryrefslogtreecommitdiff
path: root/dev-python/uv/files/uv-0.1.24-skip-tests.patch
blob: e9efee5e8d89a326c09604b4482dc0341675f6dd (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
diff --git a/crates/uv/tests/pip_compile.rs b/crates/uv/tests/pip_compile.rs
index 1fc08d1b..60675de4 100644
--- a/crates/uv/tests/pip_compile.rs
+++ b/crates/uv/tests/pip_compile.rs
@@ -5140,7 +5140,6 @@ fn expand_env_var_requirements_txt() -> Result<()> {
 }
 
 /// Raise an error when an editable's `Requires-Python` constraint is not met.
-#[test]
 fn requires_python_editable() -> Result<()> {
     let context = TestContext::new("3.12");
 
@@ -5392,7 +5391,6 @@ fn no_stream() -> Result<()> {
 }
 
 /// Raise an error when a direct URL dependency's `Requires-Python` constraint is not met.
-#[test]
 fn requires_python_direct_url() -> Result<()> {
     let context = TestContext::new("3.12");
 
diff --git a/crates/uv/tests/pip_install.rs b/crates/uv/tests/pip_install.rs
index 6dfbd764..ddc5f37b 100644
--- a/crates/uv/tests/pip_install.rs
+++ b/crates/uv/tests/pip_install.rs
@@ -912,7 +912,6 @@ fn install_no_index_version() {
 /// package in.)
 ///
 /// Ref: <https://github.com/astral-sh/uv/issues/1600>
-#[test]
 fn install_extra_index_url_has_priority() {
     let context = TestContext::new("3.12");
 
@@ -2344,7 +2343,6 @@ requires-python = ">=3.11,<3.13"
 }
 
 /// Raise an error when an editable's `Requires-Python` constraint is not met.
-#[test]
 fn requires_python_editable() -> Result<()> {
     let context = TestContext::new("3.12");
 
@@ -2792,7 +2790,6 @@ fn dry_run_install_then_upgrade() -> std::result::Result<(), Box<dyn std::error:
 }
 
 /// Raise an error when a direct URL's `Requires-Python` constraint is not met.
-#[test]
 fn requires_python_direct_url() -> Result<()> {
     let context = TestContext::new("3.12");
 
diff --git a/crates/uv/tests/pip_install_scenarios.rs b/crates/uv/tests/pip_install_scenarios.rs
index 29ec3483..a538291d 100644
--- a/crates/uv/tests/pip_install_scenarios.rs
+++ b/crates/uv/tests/pip_install_scenarios.rs
@@ -2244,7 +2244,6 @@ fn post_greater_than_or_equal_post() {
 /// └── a
 ///     └── a-1.2.3.post1
 /// ```
-#[test]
 fn post_less_than_or_equal() {
     let context = TestContext::new("3.8");
 
@@ -2283,7 +2282,6 @@ fn post_less_than_or_equal() {
 /// └── a
 ///     └── a-1.2.3.post1
 /// ```
-#[test]
 fn post_less_than() {
     let context = TestContext::new("3.8");
 
@@ -2320,7 +2318,6 @@ fn post_less_than() {
 ///     ├── a-1.2.3.post1
 ///     └── a-1.2.3.post1+local
 /// ```
-#[test]
 fn post_local_greater_than() {
     let context = TestContext::new("3.8");
 
@@ -2361,7 +2358,6 @@ fn post_local_greater_than() {
 ///     ├── a-1.2.3.post1
 ///     └── a-1.2.3.post1+local
 /// ```
-#[test]
 fn post_local_greater_than_post() {
     let context = TestContext::new("3.8");
 
@@ -2529,7 +2525,6 @@ fn post_greater_than_post_not_available() {
 /// └── a
 ///     └── a-1.0.0a1
 /// ```
-#[test]
 fn package_only_prereleases() {
     let context = TestContext::new("3.8");
 
@@ -3652,7 +3647,6 @@ fn package_prereleases_specifier_boundary() {
 ///     └── a-1.0.0
 ///         └── requires python>=3.30 (incompatible with environment)
 /// ```
-#[test]
 fn python_version_does_not_exist() {
     let context = TestContext::new("3.8");
 
@@ -3694,7 +3688,6 @@ fn python_version_does_not_exist() {
 ///     └── a-1.0.0
 ///         └── requires python<=3.8 (incompatible with environment)
 /// ```
-#[test]
 fn python_less_than_current() {
     let context = TestContext::new("3.9");
 
@@ -3736,7 +3729,6 @@ fn python_less_than_current() {
 ///     └── a-1.0.0
 ///         └── requires python>=3.10 (incompatible with environment)
 /// ```
-#[test]
 fn python_greater_than_current() {
     let context = TestContext::new("3.9");
 
@@ -3778,7 +3770,6 @@ fn python_greater_than_current() {
 ///     └── a-1.0.0
 ///         └── requires python>=3.8.14 (incompatible with environment)
 /// ```
-#[test]
 fn python_greater_than_current_patch() {
     let context = TestContext::new("3.8.12");
 
@@ -3942,7 +3933,6 @@ fn python_greater_than_current_backtrack() {
 ///     └── a-4.0.0
 ///         └── requires python>=3.12 (incompatible with environment)
 /// ```
-#[test]
 fn python_greater_than_current_excluded() {
     let context = TestContext::new("3.9");
 
diff --git a/crates/uv/tests/pip_list.rs b/crates/uv/tests/pip_list.rs
index 15d784c1..f15f14b1 100644
--- a/crates/uv/tests/pip_list.rs
+++ b/crates/uv/tests/pip_list.rs
@@ -100,7 +100,6 @@ fn list_single_no_editable() -> Result<()> {
     Ok(())
 }
 
-#[test]
 fn list_editable() -> Result<()> {
     let context = TestContext::new("3.12");
 
@@ -197,7 +196,6 @@ fn list_editable() -> Result<()> {
     Ok(())
 }
 
-#[test]
 fn list_editable_only() -> Result<()> {
     let context = TestContext::new("3.12");
 
@@ -323,7 +321,6 @@ fn list_editable_only() -> Result<()> {
     Ok(())
 }
 
-#[test]
 fn list_exclude() -> Result<()> {
     let context = TestContext::new("3.12");
 
diff --git a/crates/uv/tests/pip_sync.rs b/crates/uv/tests/pip_sync.rs
index af3f4946..0df9ed80 100644
--- a/crates/uv/tests/pip_sync.rs
+++ b/crates/uv/tests/pip_sync.rs
@@ -1447,7 +1447,6 @@ fn install_git_source_dist_cached() -> Result<()> {
 }
 
 /// Check that we show the right messages on cached, registry source distribution installs.
-#[test]
 fn install_registry_source_dist_cached() -> Result<()> {
     let context = TestContext::new("3.12");
 
@@ -2955,7 +2954,6 @@ fn compile_invalid_pyc_invalidation_mode() -> Result<()> {
 }
 
 /// Raise an error when an editable's `Requires-Python` constraint is not met.
-#[test]
 fn requires_python_editable() -> Result<()> {
     let context = TestContext::new("3.12");
 
diff --git a/crates/uv/tests/venv.rs b/crates/uv/tests/venv.rs
index 067c1414..1462f6a0 100644
--- a/crates/uv/tests/venv.rs
+++ b/crates/uv/tests/venv.rs
@@ -327,7 +327,6 @@ fn create_venv_unknown_python_patch() -> Result<()> {
     Ok(())
 }
 
-#[test]
 fn create_venv_python_patch() -> Result<()> {
     let temp_dir = assert_fs::TempDir::new()?;
     let cache_dir = assert_fs::TempDir::new()?;