Skip to content

Commit

Permalink
Skip failing test on pypy.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnephin committed Jun 8, 2014
1 parent dae5c67 commit 59e2538
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/config_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import gc
import os
import sys
import tempfile
import time

Expand Down Expand Up @@ -71,6 +72,7 @@ def test_register_get_value_proxies(self):
self.namespace.register_proxy(mock_proxy)
assert_equal(self.namespace.get_value_proxies(), proxies)

@pytest.mark.skipif('PyPy' in sys.version, reason="Fails on PyPy")
def test_get_value_proxies_does_not_contain_out_of_scope_proxies(self):
assert not self.namespace.get_value_proxies()
def a_scope():
Expand Down

0 comments on commit 59e2538

Please sign in to comment.