diff options
author | Karel Kočí <cynerd@email.cz> | 2016-03-31 00:29:17 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-03-31 00:29:17 +0200 |
commit | 2a8ad733fb5dc2e763256207332e42c90a3d6a6d (patch) | |
tree | 662f4ada3b65780660a43a868e7ae97181da0792 /tests/t_codingstandard.sh | |
parent | 7c635fe498b2c7d158a44ceaa525fe7317adb079 (diff) | |
download | mcserver-wrapper-2a8ad733fb5dc2e763256207332e42c90a3d6a6d.tar.gz mcserver-wrapper-2a8ad733fb5dc2e763256207332e42c90a3d6a6d.tar.bz2 mcserver-wrapper-2a8ad733fb5dc2e763256207332e42c90a3d6a6d.zip |
Setting up Python package
Adding support for installing using pip. This will be default way to
install mcwrapper.
Diffstat (limited to 'tests/t_codingstandard.sh')
-rwxr-xr-x | tests/t_codingstandard.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/t_codingstandard.sh b/tests/t_codingstandard.sh deleted file mode 100755 index 1b472b4..0000000 --- a/tests/t_codingstandard.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -cd "$( dirname "${BASH_SOURCE[0]}" )" -source prepare.sh - -echo "Checking code style using pep8" -pep8 ../mcwrapper -if [[ $? == 0 ]]; then - echo "Ok" -else - exit 1 -fi - -echo "Checking for common errors" -pyflakes ../mcwrapper -if [[ $? == 0 ]]; then - echo "Ok" -else - exit 1 -fi - -# This test is not part of standard check because of errors caused by dynamic variable -# loading to configuration. But it should be run from time to time to found other mistakes -#echo "Checking bugs and poor quality" -#pylint --reports=n ../mcwrapper |