Skip to content
Snippets Groups Projects
Verified Commit b6c3caff authored by Tomas Krizek's avatar Tomas Krizek
Browse files

ci: reduce pylint/mypy script verbosity

parent 44116001
No related merge requests found
......@@ -25,7 +25,7 @@ test:flake8:
test:mypy:
<<: *test
script:
- ci/mypy-run.sh
- ci/mypy-run.sh && echo "OK, no mypy error detected"
test:pylint:
<<: *test
......
#!/usr/bin/env bash
set -o nounset -o xtrace -o errexit
set -o nounset -o errexit
source "$(dirname "$0")/common.sh"
PYFILES=$(find . \
......
#!/bin/bash
set -o nounset -o xtrace -o errexit
set -o nounset -o errexit
source "$(dirname "$0")/common.sh"
PYFILES=$(find . \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment