Commit 3bc5876 1 parent 0638d86 commit 3bc5876 Copy full SHA for 3bc5876
File tree 8 files changed +7
-8
lines changed
8 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ jobs:
133
133
cache : true
134
134
- uses : Swatinem/rust-cache@v2
135
135
with :
136
- workspaces : " . -> target- pixi"
136
+ workspaces : " . -> target/ pixi"
137
137
key : ${{ hashFiles('pixi.lock') }}
138
138
- name : Test pixi
139
139
run : pixi run test-slow
Original file line number Diff line number Diff line change 8
8
name : ${{ matrix.arch.name }} - Test Installation of Common Wheels
9
9
runs-on : ${{ matrix.arch.os }}
10
10
env :
11
- TARGET_RELEASE : " ${{ github.workspace }}/target- pixi/release"
11
+ TARGET_RELEASE : " ${{ github.workspace }}/target/ pixi/release"
12
12
LOGS_DIR : " ${{ github.workspace }}/tests/wheel_tests/.logs"
13
13
SUMMARY_FILE : " ${{ github.workspace }}/tests/wheel_tests/.summary.md"
14
14
PYTHONIOENCODING : utf-8
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ jobs:
156
156
timeout-minutes : 30
157
157
runs-on : ${{ matrix.arch.os }}
158
158
env :
159
- TARGET_RELEASE : " ${{ github.workspace }}/target- pixi/release"
159
+ TARGET_RELEASE : " ${{ github.workspace }}/target/ pixi/release"
160
160
strategy :
161
161
fail-fast : false
162
162
matrix :
Original file line number Diff line number Diff line change @@ -9,4 +9,3 @@ __pycache__
9
9
site /
10
10
.cache
11
11
pytest-temp
12
- target-pixi
Original file line number Diff line number Diff line change 1
1
@ echo off
2
- set CARGO_TARGET_DIR = target- pixi
2
+ set CARGO_TARGET_DIR = target/ pixi
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -Eeuo pipefail
3
- export CARGO_TARGET_DIR=" target- pixi"
3
+ export CARGO_TARGET_DIR=" target/ pixi"
4
4
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=" clang"
5
5
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=" -C link-arg=-fuse-ld=$CONDA_PREFIX /bin/mold"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
15
15
@pytest .fixture
16
16
def pixi (request : pytest .FixtureRequest ) -> Path :
17
17
pixi_build = request .config .getoption ("--pixi-build" )
18
- return Path (__file__ ).parent .joinpath (f"../../target- pixi/{ pixi_build } /pixi" )
18
+ return Path (__file__ ).parent .joinpath (f"../../target/ pixi/{ pixi_build } /pixi" )
19
19
20
20
21
21
@pytest .fixture
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def pixi(pytestconfig: pytest.Config) -> pathlib.Path:
85
85
# Check if the target directory exists
86
86
# This assertion is for the type checker
87
87
assert project_root
88
- target_dir = pathlib .Path (project_root ).joinpath ("target- pixi/release" )
88
+ target_dir = pathlib .Path (project_root ).joinpath ("target/ pixi/release" )
89
89
if not target_dir .exists ():
90
90
pytest .exit ("pixi executable not found, run `pixi r build` first" )
91
91
You can’t perform that action at this time.
0 commit comments