Skip to content

Commit

Permalink
Fix use of index with mamba
Browse files Browse the repository at this point in the history
Made mpi tests verbose
  • Loading branch information
langmm committed Apr 2, 2024
1 parent d8b1da5 commit abdd4ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,8 @@ def do_yggdrasil_mods(opts, dont_exit=False):
opts.append('--with-mpi')
opts += ['-p', 'no:flaky']
opts -= ['--reruns=2', '--reruns-delay=1', '--timeout=900']
# TODO: Remove these once MPI debugged
opts += ['-svx']
# Continuous integration
if options.ci and (not _on_mpi):
setup_ci(opts)
Expand Down
4 changes: 3 additions & 1 deletion utils/setup_test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,9 @@ def build_conda_recipe(recipe='recipe', param=None,
f"{param.conda_flags_general} {' '.join(build_pkgs)}",
f"{conda_build} recipe --python {param.python} {build_flags}"
]
cmds.append(f"{param.conda_exe} index {conda_idx}")
# Mamba index not available
# cmds.append(f"{param.conda_exe} index {conda_idx}")
cmds.append("conda index {conda_idx}")
if return_commands:
return cmds
if cmds:
Expand Down

0 comments on commit abdd4ae

Please sign in to comment.