Skip to content

Commit

Permalink
Remove cherrypy from tests.
Browse files Browse the repository at this point in the history
The adapter is deprecated, only cherrypy <9 is supported, and that breaks
tests for Python 3.9.
  • Loading branch information
defnull committed Jan 1, 2021
1 parent 5e2efb6 commit f998fe9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_server.py
Expand Up @@ -98,7 +98,8 @@ def test_simple(self):
self.assertEqual(tob('OK'), self.fetch('test'))


blacklist = ['cgi', 'flup', 'gae', 'wsgiref', 'fapws3']
blacklist = ['cgi', 'flup', 'gae', 'wsgiref']
blacklist += ['fapws3', 'cherrypy'] # deprecated adapters

if sys.version_info.major == 2:
blacklist += [
Expand Down

0 comments on commit f998fe9

Please sign in to comment.