summaryrefslogtreecommitdiff
path: root/check
blob: 808c8a2f21a65efbe24b42cdec7164e156e9247f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

set -eu

title()
{
    printf '\n\n%s\n' "$@"
    for i in $(seq 77)
    do
        printf "-"
    done
    printf '\n'
}

title "Python2 unit tests"
python2 -m CoverageTestRunner --ignore-missing-from=without-tests
rm -f .coverage

title "Python3 unit tests"
python3 -m CoverageTestRunner --ignore-missing-from=without-tests
rm -f .coverage

title "Style checks"
pycodestyle ttystatus

title "Static checks"
PYTHONPATH=. pylint3 --rcfile=pylint.conf ttystatus