Skip to content

Commit

Permalink
Fix the override paths when running in github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
rousik committed Nov 14, 2023
1 parent ce1b983 commit c0733dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ def configure_paths_for_tests(tmp_path_factory, request):
gha_override_input = False
gha_override_output = False
if os.environ.get("GITHUB_ACTIONS", False):
gha_override_input = "PUDL_INPUTS" not in os.environ
gha_override_output = "PUDL_OUTPUTS" not in os.environ
gha_override_input = "PUDL_INPUT" not in os.environ
gha_override_output = "PUDL_OUTPUT" not in os.environ
logger.info(
"Running in GitHub Actions environment, using"
f" temporary input dir: {gha_override_input}, and"
Expand Down

0 comments on commit c0733dd

Please sign in to comment.