Skip to content

Commit

Permalink
Fix format_str in bug fix for mamba index
Browse files Browse the repository at this point in the history
Fix mpi test with pytest_prefix
  • Loading branch information
langmm committed Apr 2, 2024
1 parent abdd4ae commit 50201f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def do_yggdrasil_mods(opts, dont_exit=False):
opts += ['-p', 'no:flaky']
opts -= ['--reruns=2', '--reruns-delay=1', '--timeout=900']
# TODO: Remove these once MPI debugged
opts += ['-svx']
prefix_pytest += ['-svx']
# Continuous integration
if options.ci and (not _on_mpi):
setup_ci(opts)
Expand Down
2 changes: 1 addition & 1 deletion utils/setup_test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ def build_conda_recipe(recipe='recipe', param=None,
]
# Mamba index not available
# cmds.append(f"{param.conda_exe} index {conda_idx}")
cmds.append("conda index {conda_idx}")
cmds.append(f"conda index {conda_idx}")
if return_commands:
return cmds
if cmds:
Expand Down

0 comments on commit 50201f5

Please sign in to comment.