Skip to content

Commit

Permalink
Add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Sep 18, 2024
1 parent 81c099c commit 156e110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unix_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
run: |
export TEST_MAMBA_EXE=$(pwd)/build/micromamba/mamba
unset CONDARC # Interferes with tests
python -m pytest micromamba/tests/ \
python -m pytest micromamba/tests/test_env.py::test_env_update_pypi_with_conda_forge \
${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }}
verify_pkg_tests:
Expand Down
2 changes: 1 addition & 1 deletion micromamba/tests/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,5 +361,5 @@ def test_env_update_pypi_with_conda_forge(tmp_home, tmp_root_prefix, tmp_path):
## See: https://github.com/mamba-org/mamba/issues/2059
pip_list_output = helpers.umamba_run("-p", env_prefix, "pip", "list", "--format=json")
pip_packages_list = yaml.safe_load(pip_list_output)

print("pip_packages_list: ", pip_packages_list)
assert any(pkg["name"] == "numpy" and pkg["version"] == "1.26.4" for pkg in pip_packages_list)

0 comments on commit 156e110

Please sign in to comment.