aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/297
blob: 85bc1c0c85b68e769f0e4c37169f0953d48d9cb3 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
# group: meta
#
# Copyright (C) 2020 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

seq=$(basename $0)
echo "QA output created by $seq"

status=1	# failure is the default!

# get standard environment
. ./common.rc

if ! type -p "pylint-3" > /dev/null; then
    _notrun "pylint-3 not found"
fi
if ! type -p "mypy" > /dev/null; then
    _notrun "mypy not found"
fi

pylint-3 --score=n iotests.py

MYPYPATH=../../python/ mypy --warn-unused-configs --disallow-subclassing-any \
    --disallow-any-generics --disallow-incomplete-defs \
    --disallow-untyped-decorators --no-implicit-optional \
    --warn-redundant-casts --warn-unused-ignores \
    --no-implicit-reexport iotests.py

# success, all done
echo "*** done"
rm -f $seq.full
status=0