Skip to content

Commit

Permalink
Fix mamba/conda version test
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Oct 15, 2023
1 parent 09bfd7f commit 821caf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/conda/py35-binder-dir/verify
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ v = out.split()[1]
assert v[:3] == "3.5", out

out = sh(["micromamba", "--version"])
assert out == "1.4.9", out
assert out == "1.5.1", out

out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.4.9
conda 23.5.2"""
== """mamba 1.5.1
conda 23.7.4"""
), out

sh([kernel_python, "-c", "import numpy"])

0 comments on commit 821caf2

Please sign in to comment.