Skip to content

Commit

Permalink
Fix failing test if venv is used
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Jan 13, 2025
1 parent fe8c9ee commit c16024c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/ert/unit_tests/config/test_queue_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ def test_default_activate_script_generation(expected, monkeypatch, venv):
],
)
def test_conda_activate_script_generation(expected, monkeypatch, env):
monkeypatch.setenv("VIRTUAL_ENV", "")
monkeypatch.setenv("CONDA_ENV", env)
options = QueueOptions(name="local")
assert options.activate_script == expected
Expand Down

0 comments on commit c16024c

Please sign in to comment.