diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2013-08-30 14:08:47 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-09-02 14:41:27 +0900 |
commit | 10b835e301e3e18285835f774ade6b20c7d7c3a9 (patch) | |
tree | 4512f95f6b19770ca4ca7ead162a528e5b71dccc /run_tests.sh | |
parent | f731bc88e33e3bae160c70839dda60941d2893e6 (diff) |
remove bin/ryu-manager from the list of files for pylint/pep8
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-x | run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh index 5e0d6318..e791ed94 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -90,7 +90,7 @@ run_tests() { run_pylint() { echo "Running pylint ..." PYLINT_OPTIONS="--rcfile=.pylintrc --output-format=parseable" - PYLINT_INCLUDE="ryu bin/ryu-manager ryu/tests/bin/ryu-client" + PYLINT_INCLUDE="ryu ryu/tests/bin/ryu-client" export PYTHONPATH=$PYTHONPATH:.ryu PYLINT_LOG=pylint.log @@ -108,7 +108,7 @@ run_pep8() { PEP8_EXCLUDE="vcsversion.py,*.pyc,contrib" PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat --show-source" - PEP8_INCLUDE="bin/* ryu setup*.py" + PEP8_INCLUDE="ryu setup*.py" PEP8_LOG=pep8.log ${wrapper} pep8 $PEP8_OPTIONS $PEP8_INCLUDE | tee $PEP8_LOG } |