This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new cf7b6a43e24 Fix system test `test_aws_auth_manager` (#44073)
cf7b6a43e24 is described below
commit cf7b6a43e24686de7c69a4b6434a4a33731892d2
Author: Vincent <[email protected]>
AuthorDate: Fri Nov 15 16:39:36 2024 -0500
Fix system test `test_aws_auth_manager` (#44073)
test_aws_auth_manager is failing because the schema from Amazon Verified
Permissions has been moved when doing the refactoring of providers in Airflow
codebase.
---
providers/tests/system/amazon/aws/tests/test_aws_auth_manager.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/providers/tests/system/amazon/aws/tests/test_aws_auth_manager.py
b/providers/tests/system/amazon/aws/tests/test_aws_auth_manager.py
index 0f803cb0b1b..a3782b5285b 100644
--- a/providers/tests/system/amazon/aws/tests/test_aws_auth_manager.py
+++ b/providers/tests/system/amazon/aws/tests/test_aws_auth_manager.py
@@ -70,7 +70,9 @@ def create_avp_policy_store(env_id):
schema_path = (
Path(__file__)
.parents[6]
- .joinpath("airflow", "providers", "amazon", "aws", "auth_manager",
"avp", "schema.json")
+ .joinpath(
+ "providers", "src", "airflow", "providers", "amazon", "aws",
"auth_manager", "avp", "schema.json"
+ )
.resolve()
)
with open(schema_path) as schema_file: