@patch("teuthology.run.merge_configs")
def test_setup_config_targets_ok(self, m_merge_configs):
- config = {"targets": range(4), "roles": range(2)}
+ config = {"targets": list(range(4)), "roles": list(range(2))}
m_merge_configs.return_value = config
result = run.setup_config(["some/config.yaml"])
assert result["targets"] == [0, 1, 2, 3]
with pytest.raises(AssertionError):
run.setup_config(["some/config.yaml"])
- @patch("__builtin__.open")
+ @patch("teuthology.run.open")
def test_write_initial_metadata(self, m_open):
config = {"job_id": "123", "foo": "bar"}
run.write_initial_metadata(
@patch("yaml.safe_dump")
@patch("teuthology.report.try_push_job_info")
@patch("teuthology.run.email_results")
- @patch("__builtin__.open")
+ @patch("teuthology.run.open")
@patch("sys.exit")
def test_report_outcome(self, m_sys_exit, m_open, m_email_results, m_try_push_job_info, m_safe_dump, m_nuke, m_get_status):
m_get_status.return_value = "fail"