Commit fd91a20a authored by Eric Duminil's avatar Eric Duminil
Browse files

_var

parent 674a40af
......@@ -90,12 +90,12 @@ def test_run_files_flag(mock_simstadt, run_cli, capsys, tmp_path):
assert "Mean Uvalue" in out
def broken_simstadt(workflow_path: Path, name: str) -> str:
def _broken_simstadt(_workflow_path: Path, _name: str) -> str:
raise ValueError("BOOM!")
def test_run_error_on_stderr(monkeypatch, capsys, tmp_path):
monkeypatch.setattr("simstadt.runner.run_simstadt", broken_simstadt)
monkeypatch.setattr("simstadt.runner.run_simstadt", _broken_simstadt)
monkeypatch.setattr(
sys,
"argv",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment