Skip to content

Commit

Permalink
add encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanDeHoop committed Dec 17, 2024
1 parent c2fab10 commit d6767fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/everest/test_detached.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async def test_https_requests(tmp_path, monkeypatch, min_config):
monkeypatch.chdir(tmp_path)
with open("sleep_job", "w", encoding="utf-8") as fout:
fout.write("EXECUTABLE sleep")
with open("config.yml", "w") as fout:
with open("config.yml", "w", encoding="utf-8") as fout:
yaml.dump(min_config | {
"install_jobs": [{"name": "sleep", "source": "sleep_job"}],
"forward_model": ["sleep --sleep 10"],
Expand Down

0 comments on commit d6767fa

Please sign in to comment.