Skip to content

Commit

Permalink
fix debug check
Browse files Browse the repository at this point in the history
Signed-off-by: Andrwe@Gitlab <[email protected]>
  • Loading branch information
Andrwe committed Jan 1, 2024
1 parent 0d1ce5c commit ea8db13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def debug_enabled() -> bool:
return (
os.environ.get("DEBUG", None) is not None
or os.environ.get("RUNNER_DEBUG", None) in [1, "1"]
or os.environ.get("ACTIONS_RUNNER_DEBUG", None) in [True, "true"]
or os.environ.get("ACTIONS_STEP_DEBUG", None) in [True, "true"]
)


Expand Down

0 comments on commit ea8db13

Please sign in to comment.