Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ignore tests with deps #628

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/arroyo-connectors/src/kafka/sink/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ struct KafkaSinkWithWrites {
}

#[tokio::test]
#[ignore]
async fn test_kafka_checkpoint_flushes() {
let mut kafka_topic_tester = KafkaTopicTester {
topic: "arroyo-sink-checkpoint".to_string(),
Expand Down Expand Up @@ -174,6 +175,7 @@ async fn test_kafka_checkpoint_flushes() {
}

#[tokio::test]
#[ignore]
async fn test_kafka() {
let mut kafka_topic_tester = KafkaTopicTester {
topic: "arroyo-sink".to_string(),
Expand Down
1 change: 1 addition & 0 deletions crates/arroyo-connectors/src/kafka/source/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ impl KafkaSourceWithReads {
}

#[tokio::test]
#[ignore]
async fn test_kafka() {
let mut kafka_topic_tester = KafkaTopicTester {
topic: "__arroyo-source-test".to_string(),
Expand Down
1 change: 1 addition & 0 deletions crates/arroyo-connectors/src/mqtt/sink/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ struct MqttSinkWithWrites {
}

#[tokio::test]
#[ignore]
async fn test_mqtt() {
let mqtt_tester = MqttTopicTester {
topic: "mqtt-arroyo-test-sink".to_string(),
Expand Down
1 change: 1 addition & 0 deletions crates/arroyo-connectors/src/mqtt/source/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ impl MqttTopicTester {
}

#[tokio::test]
#[ignore]
async fn test_mqtt() {
let mqtt_tester = MqttTopicTester {
topic: "mqtt-arroyo-test".to_string(),
Expand Down
3 changes: 3 additions & 0 deletions crates/integ/tests/api_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ async fn patch_and_wait(
}

#[tokio::test]
#[ignore]
async fn basic_pipeline() {
let api_client = get_client();

Expand Down Expand Up @@ -351,6 +352,7 @@ async fn basic_pipeline() {
}

#[tokio::test]
#[ignore]
async fn udfs() {
let udf = r#"
/*
Expand Down Expand Up @@ -438,6 +440,7 @@ async fn delete_topic(client: &AdminClient<impl ClientContext>, topic: &str) {
}

#[tokio::test]
#[ignore]
async fn connection_table() {
let api_client = get_client();

Expand Down
Loading