We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38a340 commit 8e13928Copy full SHA for 8e13928
.travis.yml
@@ -3,7 +3,6 @@ language: python
3
python:
4
- "2.6"
5
- "2.7"
6
-# - "3.2"
7
- "3.3"
8
install:
9
- "python setup.py develop"
pusher_tests/test_gae_adapter.py
@@ -5,13 +5,16 @@
import pusher
import httpretty
import sys
+import os
10
if (sys.version_info < (2,7)):
11
import unittest2 as unittest
12
else:
13
import unittest
14
-@unittest.skipIf(sys.version_info >= (3,), "skip")
15
+skip_test = (sys.version_info[0:2] != (2,7)) or os.environ.get("TRAVIS_PYTHON_VERSION")
16
+
17
+@unittest.skipIf(skip_test, "skip")
18
class TestGAEBackend(unittest.TestCase):
19
20
def setUp(self):
0 commit comments