Skip to content

Commit

Permalink
Fix tests: Always return from prepend_env_var_path
Browse files Browse the repository at this point in the history
No idea why this only fails in tests, but it does.

Fixes #75
  • Loading branch information
hroncok committed Oct 22, 2024
1 parent 0db9b4b commit a570518
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tox_current_env/hooks4.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ def prepend_env_var_path(self):
)
self.options.print_extras_to.flush()

# https://github.com/fedora-python/tox-current-env/issues/75
return super().prepend_env_var_path()


@staticmethod
def id():
return "print-env"

0 comments on commit a570518

Please sign in to comment.