From d23946a0a30b3ad1bf4659ed22a53821284ae5ce Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 8 Jun 2026 14:14:15 +0000 Subject: [PATCH 1/2] bump to 14.22 --- deployment/terraform/shared/main.tf | 2 +- pytest.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deployment/terraform/shared/main.tf b/deployment/terraform/shared/main.tf index 9be59e4d..0bd7a966 100644 --- a/deployment/terraform/shared/main.tf +++ b/deployment/terraform/shared/main.tf @@ -64,7 +64,7 @@ resource "aws_security_group" "allow_db" { resource "aws_db_instance" "default" { allocated_storage = var.allocated_storage engine = "postgres" - engine_version = "14.17" + engine_version = "14.22" instance_class = var.instance_class db_name = var.database_name username = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string)["db_assessment_model_username"] diff --git a/pytest.ini b/pytest.ini index 1303dcb4..08fd85ac 100644 --- a/pytest.ini +++ b/pytest.ini @@ -14,7 +14,7 @@ testpaths = backend/documents_parser/tests backend/ecmk_fetcher/tests backend/export/tests - backend/magic_plan/tests + applications/magic_plan/tests backend/onboarders/tests backend/pashub_fetcher/tests datatypes/epc/domain/tests @@ -26,5 +26,6 @@ testpaths = etl/epc_clean/tests etl/hubspot/tests etl/spatial/tests + tests/ markers = integration: mark a test as an integration test From 84d4fa096d2962e501decc05cc1451a35c29fb11 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 8 Jun 2026 14:15:50 +0000 Subject: [PATCH 2/2] remove tests/ from pytest.ini --- pytest.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 08fd85ac..0b162ce2 100644 --- a/pytest.ini +++ b/pytest.ini @@ -26,6 +26,5 @@ testpaths = etl/epc_clean/tests etl/hubspot/tests etl/spatial/tests - tests/ markers = integration: mark a test as an integration test