Skip to content

Commit

Permalink
update default env expectations in seperate kernel envs
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Feb 16, 2023
1 parent 1a2438d commit 847fdff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/conda/py35-binder-dir/verify
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import os
import sys
from subprocess import STDOUT, check_output

assert sys.version_info[:2] == (3, 7), sys.version
assert sys.version_info[:2] == (3, 10), sys.version


def sh(cmd, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion tests/conda/py36-postBuild/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_kernel_env(kernel_conda):
def test_server_env(server_conda):
# this should be the default version
# it will need updating when the default changes
assert server_conda["python"]["version"][:3] == "3.7"
assert server_conda["python"]["version"].split(".")[:2] == ["3", "10"]


def test_conda_install(kernel_conda, server_conda):
Expand Down

0 comments on commit 847fdff

Please sign in to comment.