Skip to content

Commit

Permalink
Merge pull request #3045 from catalyst-cooperative/fix-conftest-bug
Browse files Browse the repository at this point in the history
Fix the override paths when running in github actions
  • Loading branch information
zaneselvans authored Nov 27, 2023
2 parents f8b2577 + 8f0f51c commit 649db02
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 649db02

Please sign in to comment.