Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ def virtualenv():
@task
def variable():
Variable.set("integration_test_key", "value")
assert Variable.get("integration_test_key") == "value"
if Variable.get("integration_test_key") != "value":
raise ValueError("Variable not set as expected.")
Variable.delete("integration_test_key")

@task
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,6 @@ testing = ["dev", "providers.tests", "task_sdk.tests", "tests_common", "tests"]
"kubernetes_tests/*" = ["D", "TID253", "S101", "TRY002"]
"helm_tests/*" = ["D", "TID253", "S101", "TRY002"]
"providers/**/tests/*" = ["D", "TID253", "S101", "TRY002"]
# exclude assert in edge provider
"providers/edge/src/airflow/providers/edge/example_dags/integration_test.py" = ["S101"]

# All of the modules which have an extra license header (i.e. that we copy from another project) need to
# ignore E402 -- module level import not at top level
Expand Down
Loading