Skip to content
Snippets Groups Projects
Commit f5c6e56a authored by Nicolas Dandrimont's avatar Nicolas Dandrimont
Browse files

Run pre-commit on all files, instead of flake8 and mypy

parent cbcff8d7
No related branches found
No related tags found
1 merge request!72Run pre-commit on all files, instead of flake8 and mypy
......@@ -36,15 +36,9 @@ pipeline {
stage('Static analysis') {
parallel {
stage ('flake8') {
stage ('pre-commit') {
steps {
sh '''python3 -m tox -e flake8'''
}
}
stage ('mypy') {
steps {
sh '''python3 -m tox -e mypy'''
sh '''pre-commit run -a --show-diff-on-failure'''
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment