commit | c6050871522d3f089170236389e5cf87a90ffd6c | [log] [tgz] |
---|---|---|
author | Pat Ferate <pferate@gmail.com> | Tue Mar 03 18:24:59 2015 -0800 |
committer | Pat Ferate <pferate+github@gmail.com> | Mon Mar 09 12:35:05 2015 -0700 |
tree | 367b4aa28e7d9c0aa424a90bcf97998fbbf8de2a | |
parent | c46e9053f710ca8f866734de94297e0e95d4ad33 [diff] [blame] |
Skipping tests in Python3
diff --git a/tests/test_discovery.py b/tests/test_discovery.py index 458e29d..e2677b0 100644 --- a/tests/test_discovery.py +++ b/tests/test_discovery.py
@@ -568,6 +568,7 @@ q = parse_qs(parsed[4]) self.assertEqual(q['max-results'], ['5']) + @unittest.skipIf(six.PY3, 'print is not a reserved name in Python 3') def test_methods_with_reserved_names(self): self.http = HttpMock(datafile('zoo.json'), {'status': '200'}) zoo = build('zoo', 'v1', http=self.http)