Skip to content

Commit

Permalink
fix: end-to-end test
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed May 28, 2024
1 parent 716cae3 commit ea38109
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
29 changes: 29 additions & 0 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ perl = "5.32.1.*"
pytest = "7.4.2.*"
pyyaml = ">=6.0.1,<6.1"
conda-package-handling = "2.2.0.*"
requests = ">=2.32.2,<2.33"

[feature.docs.dependencies]
mkdocs = "1.5.3.*"
Expand All @@ -42,4 +43,4 @@ mike = "2.0.0.*"
[environments]
# Using same solve group to keep the environment consistent in versions used and improving cache hits
default = {solve-group = "default"}
docs = {features = ["docs"], no-default-feature = true, solve-group = "default"}
docs = {features = ["docs"], no-default-feature = true, solve-group = "default"}
4 changes: 2 additions & 2 deletions test/end-to-end/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def build_args(
recipe_folder: Path,
output_folder: Path,
variant_config: Optional[Path] = None,
custom_channels: list[str] | None = None,
custom_channels: Optional[list[str]] = None,
extra_args: list[str] = None,
):
if extra_args is None:
Expand All @@ -51,7 +51,7 @@ def build(
recipe_folder: Path,
output_folder: Path,
variant_config: Optional[Path] = None,
custom_channels: list[str] | None = None,
custom_channels: Optional[list[str]] = None,
extra_args: list[str] = None,
):
args = self.build_args(
Expand Down

0 comments on commit ea38109

Please sign in to comment.