Skip to content

Commit

Permalink
Ignore integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
quambene committed Dec 19, 2023
1 parent c54e89c commit 2a9f916
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/cmd/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ mod tests {
use std::env;

#[test]
#[ignore]
fn test_send_subject_content_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -202,6 +203,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_message_file_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -288,6 +290,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_message_file_empty_smtp_dry() {
let args = vec![
cmd::BIN,
Expand All @@ -314,6 +317,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_message_file_none_html_smtp_dry() {
let args = vec![
cmd::BIN,
Expand All @@ -340,6 +344,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_message_file_content_none_smtp_dry() {
let args = vec![
cmd::BIN,
Expand All @@ -366,6 +371,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_archive_smtp_dry() {
let args = vec![
cmd::BIN,
Expand All @@ -392,6 +398,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_archive_dir_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -420,6 +427,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_pdf_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -448,6 +456,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_png_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -476,6 +485,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_odt_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -570,6 +580,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_aws_api_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -634,6 +645,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_text_file_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -662,6 +674,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_html_file_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -690,6 +703,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_text_file_html_file_smtp_dry() {
let args = vec![
cmd::BIN,
Expand Down
11 changes: 11 additions & 0 deletions src/cmd/send_bulk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ mod tests {
use crate::{app, cmd};

#[test]
#[ignore]
fn test_send_bulk_subject_content_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -174,6 +175,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_bulk_text_file_html_file_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -204,6 +206,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_bulk_message_file_dry() {
let args = vec![
cmd::BIN,
Expand All @@ -230,6 +233,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_bulk_receiver_column_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -258,6 +262,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_bulk_personalize_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -287,6 +292,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_archive_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -314,6 +320,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_archive_dir_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -343,6 +350,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_pdf_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -372,6 +380,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_png_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -401,6 +410,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_attachment_odt_dry() {
let args = vec![
cmd::BIN,
Expand Down Expand Up @@ -430,6 +440,7 @@ mod tests {
}

#[test]
#[ignore]
fn test_send_bulk_aws_dry() {
let args = vec![
cmd::BIN,
Expand Down

0 comments on commit 2a9f916

Please sign in to comment.