Skip to content

Commit cf378e9

Browse files
committed
fmt
1 parent 4a5b627 commit cf378e9

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

tests/integration_python/pixi_build/test-data/rattler-build-backend/pixi/pixi.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
[project]
2-
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
32
channels = ["conda-forge"]
43
description = "Add a short description here"
54
name = "pyproject"
6-
platforms = ["osx-arm64"]
7-
version = "0.1.0"
5+
platforms = ["osx-arm64", "linux-64", "osx-64", "win-64"]
86
preview = ["pixi-build"]
7+
version = "0.1.0"
98

109
[package]
1110

1211
[build-system]
1312
build-backend = "pixi-build-rattler-build"
1413
channels = [
15-
"https://prefix.dev/pixi-build-backends",
16-
"https://prefix.dev/conda-forge",
14+
"https://prefix.dev/pixi-build-backends",
15+
"https://prefix.dev/conda-forge",
1716
]
1817
dependencies = ["pixi-build-rattler-build"]
1918

tests/integration_python/pixi_build/test-data/rattler-build-backend/smokey/pixi.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[project]
2-
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
32
channels = ["conda-forge"]
43
description = "Add a short description here"
54
name = "smokey-build"

tests/integration_python/pixi_build/test_build.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from pathlib import Path
22
import shutil
3-
import tomllib
43
import json
54

6-
import tomli_w
5+
import pytest
76

87
from ..common import verify_cli_command
98

@@ -25,6 +24,7 @@ def examples_dir() -> Path:
2524
return (Path(__file__).parent / "../../../examples").resolve()
2625

2726

27+
@pytest.mark.xfail(reason="hatchling host dependencies are not properly installed")
2828
def test_build_conda_package(pixi: Path, tmp_path: Path) -> None:
2929
"""
3030
This one tries to build the example flask hello world project

0 commit comments

Comments
 (0)