diff options
author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-09-04 21:45:56 +0200 |
---|---|---|
committer | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-09-04 21:45:56 +0200 |
commit | 69945b2f278229d25ce4e527e17789129149785a (patch) | |
tree | 64d5afc273242ad7ca202b3473fe5763cc12b163 /cherrypy | |
parent | 465da8da6218aee652243a18344f67264f9f99d6 (diff) | |
download | cherrypy-git-69945b2f278229d25ce4e527e17789129149785a.tar.gz |
Revert condition for skipping memcached test
Diffstat (limited to 'cherrypy')
-rwxr-xr-x | cherrypy/test/test_session.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cherrypy/test/test_session.py b/cherrypy/test/test_session.py index 33592627..7bb0521d 100755 --- a/cherrypy/test/test_session.py +++ b/cherrypy/test/test_session.py @@ -421,7 +421,10 @@ def is_memcached_available(): return False -@pytest.mark.skipif(is_memcached_available(), reason='memcached not reachable') +@pytest.mark.skipif( + not is_memcached_available(), + reason='memcached not reachable', +) class MemcachedSessionTest(helper.CPWebCase): setup_server = staticmethod(setup_server) |