diff --git a/run_tests.sh b/run_tests.sh index 68e028a2ac..a225d78d15 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -108,7 +108,7 @@ function run_pep8 { ignore_dirs="*ajaxterm*" GLOBIGNORE="$ignore_scripts:$ignore_files:$ignore_dirs" srcfiles=`find bin -type f ! -name .*.swp` - srcfiles+=" keystone" + srcfiles+=" keystone tests" # Just run PEP8 in current environment ${wrapper} pep8 --repeat --show-pep8 --show-source \ --exclude=vcsversion.py ${srcfiles} | tee pep8.txt diff --git a/tests/test_backend_ldap.py b/tests/test_backend_ldap.py index f81f0eb985..7dfb29a479 100644 --- a/tests/test_backend_ldap.py +++ b/tests/test_backend_ldap.py @@ -146,4 +146,3 @@ class LDAPIdentity(test.TestCase, test_backend.IdentityTests): user_api = identity_ldap.UserApi(CONF) self.assertTrue(user_api) self.assertEquals(user_api.tree_dn, "ou=Users,%s" % CONF.ldap.suffix) -