Skip to content

Commit

Permalink
Correct test groups for make test-fast (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
s373r authored Nov 18, 2024
1 parent 9bd2c4d commit e496fe0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ use kamu_cli_e2e_common::prelude::*;
kamu_cli_execute_command_e2e_test!(
storage = inmem,
fixture = kamu_cli_e2e_repo_tests::commands::test_init_multi_tenant_creates_sqlite_database,
options = Options::default().with_no_workspace()
options = Options::default().with_no_workspace(),
extra_test_groups = "database"
);

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand All @@ -23,7 +24,8 @@ kamu_cli_execute_command_e2e_test!(
storage = inmem,
fixture =
kamu_cli_e2e_repo_tests::commands::test_init_multi_tenant_with_exists_ok_flag_creates_sqlite_database,
options = Options::default().with_no_workspace()
options = Options::default().with_no_workspace(),
extra_test_groups = "database"
);

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = postgres,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_reset_derivative_mt,
options = Options::default()
.with_multi_tenant()
Expand All @@ -92,7 +92,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = postgres,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_derivative_st,
options = Options::default().with_frozen_system_time(),
extra_test_groups = "containerized, engine, ingest, transform, datafusion"
Expand All @@ -101,7 +101,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = postgres,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_derivative_st,
options = Options::default()
.with_multi_tenant()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = sqlite,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_reset_derivative_mt,
options = Options::default()
.with_multi_tenant()
Expand All @@ -92,7 +92,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = sqlite,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_derivative_st,
options = Options::default().with_frozen_system_time(),
extra_test_groups = "containerized, engine, ingest, transform, datafusion"
Expand All @@ -101,7 +101,7 @@ kamu_cli_execute_command_e2e_test!(
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

kamu_cli_execute_command_e2e_test!(
storage = inmem,
storage = sqlite,
fixture = kamu_cli_e2e_repo_tests::commands::test_pull_derivative_st,
options = Options::default()
.with_multi_tenant()
Expand Down

0 comments on commit e496fe0

Please sign in to comment.