Skip to content

Commit

Permalink
Skip GAE for pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Aug 18, 2017
1 parent 91d3021 commit 0959c72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/__init__.py
Expand Up @@ -9,7 +9,10 @@
import redis.sentinel
import rediscluster

RUN_GAE = sys.version_info[:2] == (2, 7)
RUN_GAE = (
sys.version_info[:2] == (2, 7)
and platform.python_implementation() == 'CPython'
)

def test_import():
import limits
Expand Down

0 comments on commit 0959c72

Please sign in to comment.