diff --git a/src/e2e/app/cli/postgres/tests/tests/commands/mod.rs b/src/e2e/app/cli/postgres/tests/tests/commands/mod.rs index c3408f409..6c06ec61a 100644 --- a/src/e2e/app/cli/postgres/tests/tests/commands/mod.rs +++ b/src/e2e/app/cli/postgres/tests/tests/commands/mod.rs @@ -9,7 +9,6 @@ mod test_add_command; mod test_compact_command; -mod test_config_command; mod test_delete_command; mod test_ingest_command; mod test_init_command; diff --git a/src/e2e/app/cli/postgres/tests/tests/commands/test_config_command.rs b/src/e2e/app/cli/postgres/tests/tests/commands/test_config_command.rs deleted file mode 100644 index 0547a3e80..000000000 --- a/src/e2e/app/cli/postgres/tests/tests/commands/test_config_command.rs +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright Kamu Data, Inc. and contributors. All rights reserved. -// -// Use of this software is governed by the Business Source License -// included in the LICENSE file. -// -// As of the Change Date specified in that file, in accordance with -// the Business Source License, use of this software will be governed -// by the Apache License, Version 2.0. - -use kamu_cli_e2e_common::prelude::*; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = postgres, - fixture = kamu_cli_e2e_repo_tests::test_config_set_value -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = postgres, - fixture = kamu_cli_e2e_repo_tests::test_config_reset_key -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = postgres, - fixture = kamu_cli_e2e_repo_tests::test_config_get_with_default -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/src/e2e/app/cli/sqlite/tests/tests/commands/mod.rs b/src/e2e/app/cli/sqlite/tests/tests/commands/mod.rs index c3408f409..6c06ec61a 100644 --- a/src/e2e/app/cli/sqlite/tests/tests/commands/mod.rs +++ b/src/e2e/app/cli/sqlite/tests/tests/commands/mod.rs @@ -9,7 +9,6 @@ mod test_add_command; mod test_compact_command; -mod test_config_command; mod test_delete_command; mod test_ingest_command; mod test_init_command; diff --git a/src/e2e/app/cli/sqlite/tests/tests/commands/test_config_command.rs b/src/e2e/app/cli/sqlite/tests/tests/commands/test_config_command.rs deleted file mode 100644 index 111611ad7..000000000 --- a/src/e2e/app/cli/sqlite/tests/tests/commands/test_config_command.rs +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright Kamu Data, Inc. and contributors. All rights reserved. -// -// Use of this software is governed by the Business Source License -// included in the LICENSE file. -// -// As of the Change Date specified in that file, in accordance with -// the Business Source License, use of this software will be governed -// by the Apache License, Version 2.0. - -use kamu_cli_e2e_common::prelude::*; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = sqlite, - fixture = kamu_cli_e2e_repo_tests::test_config_set_value -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = sqlite, - fixture = kamu_cli_e2e_repo_tests::test_config_reset_key -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -kamu_cli_execute_command_e2e_test!( - storage = sqlite, - fixture = kamu_cli_e2e_repo_tests::test_config_get_with_default -); - -////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////