Marcin-Ramotowski 6d84bf694e
Some checks failed
ci/woodpecker/push/build Pipeline failed
Added python tests to Woodpecker Workflow
2025-05-25 16:43:44 +00:00

13 lines
277 B
YAML

when:
- event: push
branch: woodpecker
steps:
- name: build
image: python:3.11.7-alpine
commands:
- python3 -m venv env
- source env/bin/activate
- pip install -r requirements.txt pytest
- python3 -m pytest --junit-xml=pytest_junit.xml