From bfdb5b970f313e7cb64cd7e2b34394fea5358d6b Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Mon, 17 Aug 2026 20:17:47 +0200 Subject: add Python tests mostly to check that the API and the calling works --- .woodpecker/tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.woodpecker') diff --git a/.woodpecker/tests.yaml b/.woodpecker/tests.yaml index 4ca95a0..697a524 100644 --- a/.woodpecker/tests.yaml +++ b/.woodpecker/tests.yaml @@ -5,8 +5,10 @@ steps: - name: test image: rust commands: - - apt update && apt install -y python3-dev + - apt update && apt install -y python3-dev python3-pip + - pip3 install ./hittekaart-py pytest - cargo test + - cd hittekaart-py && pytest - name: compile-benches image: rust commands: -- cgit v1.2.3 From 182f3366fbbe9d00d3a25c630199d91dd307e771 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Mon, 17 Aug 2026 20:19:27 +0200 Subject: force install python packages :) --- .woodpecker/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.woodpecker') diff --git a/.woodpecker/tests.yaml b/.woodpecker/tests.yaml index 697a524..f8ce807 100644 --- a/.woodpecker/tests.yaml +++ b/.woodpecker/tests.yaml @@ -6,7 +6,7 @@ steps: image: rust commands: - apt update && apt install -y python3-dev python3-pip - - pip3 install ./hittekaart-py pytest + - pip3 install --break-system-packages ./hittekaart-py pytest - cargo test - cd hittekaart-py && pytest - name: compile-benches -- cgit v1.2.3