Skip to content

Commit

Permalink
ignore tests with deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfactorial committed Jun 11, 2024
1 parent 3d4bd7f commit 6dff31a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
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

0 comments on commit 6dff31a

Please sign in to comment.