Skip to content

Commit 7718c26

Browse files
committed
test: add missing test files
1 parent 9c18379 commit 7718c26

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Output Dependencies Test Workspace
2+
3+
This workspace contains a simple test package used to test the `get_output_dependencies` function.
4+
5+
## Structure
6+
7+
- `test-package/`: A package with build, host, and run dependencies
8+
- Build dependencies: cmake, make
9+
- Host dependencies: zlib, openssl
10+
- Run dependencies: python, numpy
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[workspace]
2+
channels = []
3+
platforms = []
4+
preview = ["pixi-build"]
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "test-package"
3+
version = "0.1.0"
4+
5+
[package.build]
6+
backend = { name = "in-memory", version = "*" }
7+
8+
[package.build-dependencies]
9+
cmake = ">=3.0"
10+
make = "*"
11+
12+
[package.host-dependencies]
13+
openssl = ">=3.0"
14+
zlib = ">=1.2"
15+
16+
[package.run-dependencies]
17+
numpy = ">=1.20"
18+
python = ">=3.8"

0 commit comments

Comments
 (0)