diff options
Diffstat (limited to 'python/tests')
-rwxr-xr-x | python/tests/flake8.sh | 2 | ||||
-rwxr-xr-x | python/tests/isort.sh | 2 | ||||
-rwxr-xr-x | python/tests/mypy.sh | 2 | ||||
-rwxr-xr-x | python/tests/pylint.sh | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/python/tests/flake8.sh b/python/tests/flake8.sh new file mode 100755 index 0000000..51e0788 --- /dev/null +++ b/python/tests/flake8.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +python3 -m flake8 diff --git a/python/tests/isort.sh b/python/tests/isort.sh new file mode 100755 index 0000000..4480405 --- /dev/null +++ b/python/tests/isort.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +python3 -m isort -c qemu/ diff --git a/python/tests/mypy.sh b/python/tests/mypy.sh new file mode 100755 index 0000000..5f980f5 --- /dev/null +++ b/python/tests/mypy.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +python3 -m mypy -p qemu diff --git a/python/tests/pylint.sh b/python/tests/pylint.sh new file mode 100755 index 0000000..4b10b34 --- /dev/null +++ b/python/tests/pylint.sh @@ -0,0 +1,2 @@ +#!/bin/sh -e +python3 -m pylint qemu/ |