Bump version to 0.8.2; enhance image parameter extraction
Some checks failed
Gitea/kapitanbooru-uploader/pipeline/head There was a failure building this commit

This commit is contained in:
2025-03-28 23:49:28 +01:00
parent df83c9dcdc
commit f3e1463b2b
8 changed files with 161 additions and 15 deletions

9
Jenkinsfile vendored
View File

@@ -35,6 +35,15 @@ pipeline {
sh '. venv/bin/activate && python -m build' // Builds the package
}
}
stage('Run Unit Tests') {
steps {
// For unittest:
sh '. venv/bin/activate && python -m unittest discover -s tests'
// For pytest (if preferred):
// sh '. venv/bin/activate && pytest'
}
}
stage('Publish to Local PyPI') {
steps {