summaryrefslogtreecommitdiff
path: root/check
blob: 9aee15fc2c81b893dd7d5a33bf679b8477acacc1 (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
28
#!/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"
pycodestyle ttystatus
#PYTHONPATH=. pylint3 --rcfile=pylint.conf ttystatus