Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Oct 27, 2015
1 parent eb2f313 commit 589d7bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cliquet/storage/postgresql/client.py
Expand Up @@ -83,7 +83,7 @@ def create_from_config(config, prefix=''):
# XXX: Disable pooling at least during tests to avoid stalled tests.
pypy_on_travis = (platform.python_implementation().lower() == 'pypy' and
os.getenv('TRAVIS', False))
if pypy_on_travis:
if pypy_on_travis: # pragma: no cover
warnings.warn('Disable pooling with PyPy on TravisCI')
settings = dict([(poolclass_key, sqlalchemy.pool.StaticPool)])

Expand Down

0 comments on commit 589d7bb

Please sign in to comment.