Skip to content

Commit

Permalink
Don't error if .pixi doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofer-Julian committed Dec 17, 2024
1 parent 86a3d55 commit c83a9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_python/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_doc_pixi_projects(pixi: Path, tmp_pixi_workspace: Path, doc_pixi_projec
shutil.copytree(doc_pixi_projects, target_dir)

for pixi_project in target_dir.iterdir():
shutil.rmtree(pixi_project.joinpath(".pixi"))
shutil.rmtree(pixi_project.joinpath(".pixi"), ignore_errors=True)
manifest = pixi_project.joinpath("pixi.toml")
# Run the test command
verify_cli_command(
Expand Down

0 comments on commit c83a9a6

Please sign in to comment.