Skip to content

Commit 0eac71f

Browse files
committed
Disable expensive functional tests
1 parent 6f763b3 commit 0eac71f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/parser.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1910,6 +1910,7 @@ mod tests {
19101910
}
19111911

19121912
#[test]
1913+
#[ignore]
19131914
fn real_world_gazetteer_parser() {
19141915
let (_, body) = CallBuilder::get().max_response(20000000).timeout_ms(60000).url("https://s3.amazonaws.com/snips/nlu-lm/test/gazetteer-entity-parser/artist_gazetteer_formatted.json").unwrap().exec().unwrap();
19151916
let data: Vec<EntityValue> = serde_json::from_reader(&*body).unwrap();
@@ -2002,6 +2003,7 @@ mod tests {
20022003
}
20032004

20042005
#[test]
2006+
#[ignore]
20052007
fn test_real_word_injection() {
20062008
// Real-world artist gazetteer
20072009
let (_, body) = CallBuilder::get().max_response(20000000).timeout_ms(100000).url("https://s3.amazonaws.com/snips/nlu-lm/test/gazetteer-entity-parser/artist_gazetteer_formatted.json").unwrap().exec().unwrap();

0 commit comments

Comments
 (0)