Skip to content

Commit

Permalink
disable remote check sql integration tests
Browse files Browse the repository at this point in the history
Change-Id: Id754d439c971cfb2bd95eb46acb4939c0d16291a
  • Loading branch information
s-kipnis committed Oct 18, 2023
1 parent 8293319 commit 2e63f1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/check-sql/tests/test_ms_sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ async fn test_local_connection() {
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_remote_connection() {
if let Some(endpoint) = tools::get_remote_sql_from_env_var() {
assert!(api::create_client(
Expand All @@ -35,6 +36,7 @@ async fn test_remote_connection() {
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_check_config_exec_remote() {
let file = tools::create_remote_config(&tools::get_remote_sql_from_env_var().unwrap());
let check_config = CheckConfig::load_file(file.path()).unwrap();
Expand All @@ -61,6 +63,7 @@ fn test_run_local() {
}

#[test]
#[ignore]
fn test_run_remote() {
let file = tools::create_remote_config(&tools::get_remote_sql_from_env_var().unwrap());
assert!(tools::run_bin()
Expand Down

0 comments on commit 2e63f1f

Please sign in to comment.