Adjustments to .woodpecker.yml
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Administrator 2024-01-18 20:28:39 +00:00
parent c0ccff7e74
commit 1ef7224b1a
2 changed files with 10 additions and 4 deletions

View File

@ -4,7 +4,8 @@ steps:
commands:
- pip install pipenv==2023.11.15
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake test-typing
- pipenv run almake test-pytest
- pipenv run almake build-dist
- sha256sum dist/*
@ -13,7 +14,8 @@ steps:
commands:
- pip install pipenv==2023.11.15
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake test-typing
- pipenv run almake test-pytest
- pipenv run almake build-dist
- sha256sum dist/*
@ -22,7 +24,8 @@ steps:
commands:
- pip install pipenv==2023.11.15
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake test-typing
- pipenv run almake test-pytest
- pipenv run almake build-dist
- sha256sum dist/*

View File

@ -5,9 +5,12 @@ format:
test:
black --check .
ruff .
mypy
$(MAKE) test-typing
$(MAKE) test-pytest
test-typing:
mypy
test-pytest:
python -m pytest --cov=sporestack --cov-fail-under=39 --cov-report=term --durations=3 --cache-clear