We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c2e8c commit 6ecad2eCopy full SHA for 6ecad2e
src/transformers/clip.rs
@@ -361,6 +361,12 @@ mod tests {
361
362
#[test]
363
fn test_init_text_embeddings() {
364
+ // This test is known to fail on WGPU using mesa on a Linux Github CI.
365
+ #[cfg(all(feature = "std", target_os = "linux", feature = "wgpu"))]
366
+ if std::env::var("CI").is_ok() {
367
+ return;
368
+ }
369
+
370
let device = Default::default();
371
let clip_config = ClipConfig::v1_5();
372
let text_embeddings: ClipTextEmbeddings<TestBackend> =
0 commit comments