Skip to content

Commit

Permalink
Fix system test test_aws_auth_manager (apache#44073)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vincbeck authored Nov 15, 2024
1 parent 98bda4c commit cf7b6a4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cf7b6a4

Please sign in to comment.