diff options
| author | John Snow <jsnow@redhat.com> | 2021-10-19 10:49:17 -0400 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2021-11-01 11:54:59 -0400 |
| commit | 461044ceb4fe58eb919dedfeb62f619f79d4d552 (patch) | |
| tree | a889e02bdafe0d85cd88678c2a5032dc907921a4 | |
| parent | 558dbe9935445af6ab20e18b3664ba6c43eb2311 (diff) | |
| download | focaccia-qemu-461044ceb4fe58eb919dedfeb62f619f79d4d552.tar.gz focaccia-qemu-461044ceb4fe58eb919dedfeb62f619f79d4d552.zip | |
python: Add iotest linters to test suite
Run mypy and pylint on the iotests files directly from the Python CI test infrastructure. This ensures that any accidental breakages to the qemu.[qmp|aqmp|machine|utils] packages will be caught by that test suite. It also ensures that these linters are run with well-known versions and test against a wide variety of python versions, which helps to find accidental cross-version python compatibility issues. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Message-id: 20211019144918.3159078-15-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
| -rwxr-xr-x | python/tests/iotests-mypy.sh | 4 | ||||
| -rwxr-xr-x | python/tests/iotests-pylint.sh | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/python/tests/iotests-mypy.sh b/python/tests/iotests-mypy.sh new file mode 100755 index 0000000000..ee76470819 --- /dev/null +++ b/python/tests/iotests-mypy.sh @@ -0,0 +1,4 @@ +#!/bin/sh -e + +cd ../tests/qemu-iotests/ +python3 -m linters --mypy diff --git a/python/tests/iotests-pylint.sh b/python/tests/iotests-pylint.sh new file mode 100755 index 0000000000..4cae03424b --- /dev/null +++ b/python/tests/iotests-pylint.sh @@ -0,0 +1,4 @@ +#!/bin/sh -e + +cd ../tests/qemu-iotests/ +python3 -m linters --pylint |