comment part of the test since we don't raise error anymore

This commit is contained in:
Lendemor 2024-10-29 18:39:20 +01:00
parent 23f65197fc
commit 9367e15595

View File

@ -83,8 +83,8 @@ def test_update_from_env_path(
""" """
monkeypatch.setenv("BUN_PATH", "/test") monkeypatch.setenv("BUN_PATH", "/test")
assert os.environ.get("BUN_PATH") == "/test" assert os.environ.get("BUN_PATH") == "/test"
with pytest.raises(ValueError): # with pytest.raises(ValueError):
rx.Config(**base_config_values) # rx.Config(**base_config_values)
monkeypatch.setenv("BUN_PATH", str(tmp_path)) monkeypatch.setenv("BUN_PATH", str(tmp_path))
assert os.environ.get("BUN_PATH") == str(tmp_path) assert os.environ.get("BUN_PATH") == str(tmp_path)