diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2012-10-12 11:16:19 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-11-03 15:02:57 +0900 |
commit | 0ae9c296877d2f5e6284adde86cfcbe40d04ac36 (patch) | |
tree | 97c6510c793774d6296ecf386da0bf591fff6974 /run_tests.sh | |
parent | 6eeddaa2a43c86f9c431330125be001ff062698a (diff) |
prepare contrib directory which holds third party library
- create ryu/contrib directory
- adjust module load path for third party library and prioritize our own copy
than system's
- teach ryu-manager ryu/contrib
- run_tests.sh: exclude contrib dir for pep8
third party files will be included under ryu/contrib.
Third party files aren't suitable to our pep8 check because they aren't under
our control.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-x | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 2ca8e45a..a00d2a88 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -99,7 +99,7 @@ function run_pylint { function run_pep8 { echo "Running pep8 ..." - PEP8_EXCLUDE="vcsversion.py,*.pyc" + PEP8_EXCLUDE="vcsversion.py,*.pyc,contrib" PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat --show-source" PEP8_INCLUDE="bin/* ryu setup*.py" PEP8_LOG=pep8.log |