Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GDYendell committed Apr 12, 2024
1 parent 0ab2b72 commit cdfee67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@

def test_cli_version():
cmd = [sys.executable, "-m", "odin_fastcs", "--version"]
assert subprocess.check_output(cmd).decode().strip() == __version__
stdout = subprocess.check_output(cmd).decode().strip().split("\n")
assert __version__ in stdout

0 comments on commit cdfee67

Please sign in to comment.