diff options
-rw-r--r-- | flake8_cfg | 1 | ||||
-rwxr-xr-x | verify.sh (renamed from tests.sh) | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -2,3 +2,4 @@ format = pylint statistics = True count = True +show_source = True
\ No newline at end of file @@ -15,11 +15,11 @@ getopts ":f" FILE_OPTION run_flake8() { echo "Running flake8 ... " - logfile=test_results.log + logfile=flake8_verify.log if [ $FILE_OPTION == "f" ]; then - sudo flake8 --append-config=flake8_cfg testsuites/posca/ > $logfile + flake8 --append-config=flake8_cfg testsuites/posca/ utils/ > $logfile else - sudo flake8 --append-config=flake8_cfg testsuites/posca/ + flake8 --append-config=flake8_cfg testsuites/posca/ utils/ fi if [ $? -ne 0 ]; then |