Skip to content

Commit

Permalink
Fix python version test
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed May 27, 2022
1 parent 1392542 commit 806a0c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/base-notebook/test_python.py
Expand Up @@ -17,8 +17,9 @@ def test_python_version(
logs = container.run_and_wait(
timeout=5,
tty=True,
command=["start.sh", "python", "--version"],
command=["python", "--version"],
)
assert logs.startswith("Python ")
actual_python_version = version.parse(logs.split()[1])
assert actual_python_version < version.parse(
python_next_version
Expand Down

0 comments on commit 806a0c3

Please sign in to comment.