Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Jan 11, 2024
1 parent 6d91ee5 commit 856482d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_iso_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def test_isolated_environment(self) -> None:
with TemporaryDirectory() as tmp_dir:
iso_env = IsolatedEnvironment(Path(tmp_dir) / "venv")
iso_env.install_environment()
iso_env.pip_install("whisper")
rtn = iso_env.run(["whisper", "--help"])
iso_env.pip_install("static-ffmpeg")
rtn = iso_env.run(["static_ffmpeg", "--help"])
self.assertEqual(0, rtn)


Expand Down

0 comments on commit 856482d

Please sign in to comment.