Skip to content

Commit 9a11233

Browse files
committed
Fix pixi-build test task
1 parent 78b335d commit 9a11233

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pixi.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ cmake = ">=3.22"
184184
python = "*"
185185

186186
[feature.test-pixi-build.tasks]
187-
test-cmake = "cmake -S unittest/packaging/cmake -B build_test_pixi_build"
188-
test-python = "python -c 'import eigenpy'"
187+
test-cmake = "cmake -S tests/pixi_build -B build_test_pixi_build"
188+
test-python = "python -c 'import aligator'"
189189
test = { depends-on = ["test-cmake", "test-python"] }
190190

191191
[feature.doc.dependencies]

tests/pixi_build/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
cmake_minimum_required(VERSION 3.22)
2+
project(test_pixi_build)
3+
find_package(aligator REQUIRED)

0 commit comments

Comments
 (0)