Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pythonPackages.limnoria: Add optional dependencies and enable tests #84989

Closed
wants to merge 5 commits into from

Conversation

progval
Copy link
Member

@progval progval commented Apr 11, 2020

Motivation for this change

Limnoria has optional features enabled when these dependencies are available.

Things done

I copied dependencies from the source requirements.txt file.
I also enabled tests while I was at it, but I can remove them if you think it's too much overhead (5 to 10 min on an average PC)

  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after): 109MB -> 171MB
  • Ensured that relevant documentation is up to date
  • Fits CONTRIBUTING.md.

cc @cillianderoiste

Sorry, something went wrong.

Copy link
Contributor

@jonringer jonringer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

generally optional dependencies are avoided as then even packages that just need the base functionality now have to pull the entire optional dependency tree.

if you just want the tests to be ran, then only include them in checkInputs.

@progval progval force-pushed the limnoria-tests branch 2 times, most recently from c0b61ce to 0846080 Compare June 14, 2020 08:13
@progval
Copy link
Member Author

progval commented Jun 14, 2020

Thanks for the review, and sorry for the late reply, I missed the notification somehow.

This should be fixed now.

@SuperSandro2000
Copy link
Member

Result of nixpkgs-review pr 84989 run on x86_64-linux 1

2 packages built:
  • python37Packages.limnoria
  • python38Packages.limnoria

@SuperSandro2000
Copy link
Member

SuperSandro2000 commented Nov 28, 2020

Result of nixpkgs-review pr 84989 run on x86_64-darwin 1

2 packages failed to build:
  • python37Packages.limnoria
  • python38Packages.limnoria

Maybe disable the tests for darwin:

======================================================================
ERROR: testFeaturedSome (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testProfile (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testProfileSnarfer (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testProfileSnarferNoWebfinger (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testProfileUnknown (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testProfileUrlSnarfer (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testSnarferType (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatus (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatusAttachment (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatusError (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatusUrlSnarfer (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatusUrlSnarferDisabled (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatusUrlSnarferErrors (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testStatuses (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Fediverse/test.py", line 72, in setUp
    super().setUp()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 489, in setUp
    PluginTestCase.setUp(self)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 269, in setUp
    plugin.loadPluginClass(self.irc, module)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/plugin.py", line 151, in loadPluginClass
    cb = module.Class(irc)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/utils/python.py", line 102, in __init__
    original__init__(self, *args, **kwargs)
  File "./plugins/Fediverse/plugin.py", line 125, in __init__
    self._startHttp()
  File "./plugins/Fediverse/plugin.py", line 139, in _startHttp
    httpserver.hook("fediverse", callback)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 491, in hook
    startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testChannelPage (Aka.test.AkaWebUITestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Aka/test.py", line 305, in setUp
    httpserver.startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testGlobalPage (Aka.test.AkaWebUITestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Aka/test.py", line 305, in setUp
    httpserver.startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
ERROR: testToggleWebEnable (Aka.test.AkaWebUITestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./plugins/Aka/test.py", line 305, in setUp
    httpserver.startServer()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 471, in startServer
    server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 420, in __init__
    HTTPServer.__init__(self, address, callback)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 452, in __init__
    self.server_bind()
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/httpserver.py", line 427, in server_bind
    HTTPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/http/server.py", line 138, in server_bind
    socketserver.TCPServer.server_bind(self)
  File "/nix/store/0mabx9absir73mmijrsv0dsyvyya463r-python3-3.8.6/lib/python3.8/socketserver.py", line 466, in server_bind
    self.socket.bind(self.server_address)
PermissionError: [Errno 1] Operation not permitted

======================================================================
FAIL: testSearchtodo (Todo.test.TodoTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Todo/test.py", line 113, in testSearchtodo
    self.assertRegexp('todo search --regexp m/task/',
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 414, in assertRegexp
    self.assertTrue(re.search(regexp, m.args[1], flags),
AssertionError: None is not true : 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' does not match '#1: task number one and #2: task number two is much longer than task number...'

======================================================================
FAIL: testCpu (Status.test.StatusTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Status/test.py", line 47, in testCpu
    self.assertTrue('B' in m.args[1] or 'KB' in m.args[1] or
AssertionError: False is not true : No memory string on supported platform.

======================================================================
FAIL: testGpgAuth (GPG.test.GPGTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/GPG/test.py", line 135, in testGpgAuth
    self.assertResponse('gpg signing auth http://foo.bar/baz.gpg',
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: Signature or token not found.' != 'You are now authenticated as spam.'
- Error: Signature or token not found.
+ You are now authenticated as spam.
 : 'You are now authenticated as spam.' != 'Error: Signature or token not found.'

======================================================================
FAIL: testLast (Misc.test.MiscTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Misc/test.py", line 172, in testLast
    self.assertRegexp(r'last --regexp m/\s+/', r'last --without foo')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 414, in assertRegexp
    self.assertTrue(re.search(regexp, m.args[1], flags),
AssertionError: None is not true : 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' does not match 'last --without foo'

======================================================================
FAIL: testDunnoSearch (Dunno.test.DunnoTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Dunno/test.py", line 51, in testDunnoSearch
    self.assertRegexp('dunno search --regexp m/foo/', r'1 found')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 414, in assertRegexp
    self.assertTrue(re.search(regexp, m.args[1], flags),
AssertionError: None is not true : 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' does not match '1 found'

======================================================================
FAIL: testFeaturedNone (Fediverse.test.NetworklessFediverseTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Fediverse/test.py", line 169, in testFeaturedNone
    self.assertResponse(
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' != 'No featured statuses.'
- Error: PicklingError: args[0] from __newobj__ args has the wrong class
+ No featured statuses.
 : 'No featured statuses.' != 'Error: PicklingError: args[0] from __newobj__ args has the wrong class'

======================================================================
FAIL: testRe (String.test.StringTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/String/test.py", line 115, in testRe
    self.assertResponse('re "m/system time/" [status cpu]', 'system time')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' != 'system time'
- Error: PicklingError: args[0] from __newobj__ args has the wrong class
+ system time
 : 'system time' != 'Error: PicklingError: args[0] from __newobj__ args has the wrong class'

======================================================================
FAIL: testReBug850931 (String.test.StringTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/String/test.py", line 133, in testReBug850931
    self.assertResponse(r're s/\b(\w+)\b/\1./g foo bar baz',
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' != 'foo. bar. baz.'
- Error: PicklingError: args[0] from __newobj__ args has the wrong class
+ foo. bar. baz.
 : 'foo. bar. baz.' != 'Error: PicklingError: args[0] from __newobj__ args has the wrong class'

======================================================================
FAIL: testReWorksWithJustCaret (String.test.StringTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/String/test.py", line 127, in testReWorksWithJustCaret
    self.assertResponse('re s/^/foo/ bar', 'foobar')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' != 'foobar'
- Error: PicklingError: args[0] from __newobj__ args has the wrong class
+ foobar
 : 'foobar' != 'Error: PicklingError: args[0] from __newobj__ args has the wrong class'

======================================================================
FAIL: testActionReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 155, in testActionReplace
    self.assertIn('meant to say: * %s wakes' % self.nick, str(m))
AssertionError: 'meant to say: * test wakes' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testAllFlagsReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 88, in testAllFlagsReplace
    self.assertIn('horrible, horrible crimes', str(m))
AssertionError: 'horrible, horrible crimes' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testBoldReplacement (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 115, in testBoldReplacement
    self.assertIn('\x02H\x02aha', str(m))
AssertionError: '\x02H\x02aha' not found in 'PRIVMSG #test :ghost: Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testCaseInsensitiveReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 58, in testCaseInsensitiveReplace
    self.assertIn('eliens', str(m))
AssertionError: 'eliens' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testCaseNormalizationInRead (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 172, in testCaseNormalizationInRead
    self.assertIn('what a hilarious bug', str(m))
AssertionError: 'what a hilarious bug' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testCaseNormalizationInReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 178, in testCaseNormalizationInReplace
    self.assertIn('Segmentation fault (core dumped)', str(m))
AssertionError: 'Segmentation fault (core dumped)' not found in 'PRIVMSG #Test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testExplicitOtherReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 105, in testExplicitOtherReplace
    self.assertIn('pouch', str(m))
AssertionError: 'pouch' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testGlobalCaseInsensitiveReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 74, in testGlobalCaseInsensitiveReplace
    self.assertIn('ebbe', str(m))
AssertionError: 'ebbe' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testGlobalReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 68, in testGlobalReplace
    self.assertIn('AAee eeAe e b', str(m))
AssertionError: 'AAee eeAe e b' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testIgnoreTextAfterTrailingSeparator (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 213, in testIgnoreTextAfterTrailingSeparator
    self.assertIn('see you later', str(m))
AssertionError: 'see you later' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testMissingTrailingSeparator (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 194, in testMissingTrailingSeparator
    self.assertIn('hello everyone', str(m))
AssertionError: 'hello everyone' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testNonSlashSeparator (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 132, in testNonSlashSeparator
    self.assertIn('developers', str(m))
AssertionError: 'developers' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testOnlySelfReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 81, in testOnlySelfReplace
    self.assertIn('kind machines', str(m))
AssertionError: 'kind machines' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testOtherPersonActionReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 162, in testOtherPersonActionReplace
    self.assertIn('thinks %s meant to say: * %s wakes' % (n, n), str(m))
AssertionError: 'thinks blah meant to say: * blah wakes' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testOtherPersonReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 96, in testOtherPersonReplace
    self.assertIn('%s thinks %s meant to say' % (ircutils.nickFromHostmask(self.__class__.other2),
AssertionError: 'ghost thinks blah meant to say' not found in 'PRIVMSG #test :ghost: Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testReDoSTimeout (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 187, in testReDoSTimeout
    self.assertIn('timed out', str(m))
AssertionError: 'timed out' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testSimpleReplace (SedRegex.test.SedRegexTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/SedRegex/test.py", line 52, in testSimpleReplace
    self.assertIn('Abcd testefgh', str(m))
AssertionError: 'Abcd testefgh' not found in 'PRIVMSG #test :Error: _pickle.PicklingError: args[0] from __newobj__ args has the wrong class\r\n'

======================================================================
FAIL: testHistsearch (Aka.test.AkaChannelTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Aka/test.py", line 67, in testHistsearch
    self.assertResponse('histsearch .*', '@echo foo')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 402, in assertResponse
    self.assertEqual(m.args[1], expectedResponse,
AssertionError: 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' != '@echo foo'
- Error: PicklingError: args[0] from __newobj__ args has the wrong class
+ @echo foo
 : '@echo foo' != 'Error: PicklingError: args[0] from __newobj__ args has the wrong class'

======================================================================
FAIL: testSearch (Note.test.NoteTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Note/test.py", line 81, in testSearch
    self.assertRegexp('note search --regexp m/1,2/', r'#2')
  File "/nix/store/b9i57lsl67m5yran01w8a0dl7146k135-python3.8-limnoria-2020.10.10/lib/python3.8/site-packages/supybot/test.py", line 414, in assertRegexp
    self.assertTrue(re.search(regexp, m.args[1], flags),
AssertionError: None is not true : 'Error: PicklingError: args[0] from __newobj__ args has the wrong class' does not match '#2'

----------------------------------------------------------------------
Ran 1009 tests in 258.095s

FAILED (failures=28, errors=17, skipped=14)

@progval
Copy link
Member Author

progval commented Nov 28, 2020

Hmm, besides the "Operation not permitted" ones, they look like actual bugs, though.

@progval
Copy link
Member Author

progval commented Nov 28, 2020

@SuperSandro2000 If you don't mind, could you re-run them with the -vv option added to the checkPhase command, and show me the whole output? (Sorry, I don't have access to any darwin machine)

@SuperSandro2000
Copy link
Member

@SuperSandro2000 If you don't mind, could you re-run them with the -vv option added to the checkPhase command, and show me the whole output? (Sorry, I don't have access to any darwin machine)

Not necessary. self.socket.bind(self.server_address) is not allowed in the darwin sandbox. Just disable those tests.

@progval
Copy link
Member Author

progval commented Dec 8, 2020

I know, but it only explains the PermissionError: [Errno 1] Operation not permitted failures, not the other ones.

@SuperSandro2000
Copy link
Member

I know, but it only explains the PermissionError: [Errno 1] Operation not permitted failures, not the other ones.

You can just mark it broken on darwin if you do not want to deal with this now.

@stale
Copy link

stale bot commented Jun 7, 2021

I marked this as stale due to inactivity. → More info

@stale stale bot added the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 7, 2021
@progval
Copy link
Member Author

progval commented Jun 7, 2021

Heh, I can't find a Darwin machine to debug, so let's mark it as broken.

How do I do it? meta.broken = !hostPlatform.isDarwin?

@stale stale bot removed the 2.status: stale https://github.com/NixOS/nixpkgs/blob/master/.github/STALE-BOT.md label Jun 7, 2021
@SuperSandro2000
Copy link
Member

Heh, I can't find a Darwin machine to debug, so let's mark it as broken.

How do I do it? meta.broken = !hostPlatform.isDarwin?

You probably want to set meta.broken = stdenv.isDarwin if you want to mark it broken on darwin.

Copy link
Member

@SuperSandro2000 SuperSandro2000 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you want to rebase this PR against master because the diff is looking a bit weird. stdenv is listed on line 1 and not available.

progval and others added 3 commits June 12, 2021 21:18

Verified

This commit was signed with the committer’s verified signature. The key has expired.
mweinelt Martin Weinelt
These dependencies are optional at runtime, but nice to have.
They are already required to run all tests.

They are all listed in the source 'requirements.txt' file.
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
progval and others added 2 commits June 15, 2021 20:10
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
@SuperSandro2000 SuperSandro2000 changed the title python: limnoria: Add optional dependencies and enable tests. pythonPackages.limnoria: Add optional dependencies and enable tests. Jun 16, 2021
@SuperSandro2000 SuperSandro2000 changed the title pythonPackages.limnoria: Add optional dependencies and enable tests. pythonPackages.limnoria: Add optional dependencies and enable tests Jun 16, 2021
@SuperSandro2000
Copy link
Member

This is a semi-automatic executed nixpkgs-review with nixpkgs-review-checks extension. It is checked by a human on a best effort basis and does not build all packages (e.g. lumo, tensorflow or pytorch).

Result of nixpkgs-review pr 84989 run on x86_64-linux 1

2 packages failed to build and are new build failures:

--replace "version=version" 'version="${version}"'
substituteInPlace plugins/Unix/test.py \
--replace "/bin/ls" "ls" \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

======================================================================
FAIL: testCall (Unix.test.UnixTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Unix/test.py", line 171, in testCall
    self.assertNotError('unix call /bin/ls /')
  File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 358, in assertNotError
    self.assertFalse(m.args[1].startswith('Error:'),
AssertionError: True is not false : 'unix call /bin/ls /' errored: Error: It seems the requested command was not available ([Errno 2] No such file or directory: '/bin/ls').

======================================================================
FAIL: testShellForbidden (Unix.test.UnixTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
    originalRunTest()
  File "./plugins/Unix/test.py", line 176, in testShellForbidden
    self.assertNotError('unix call /bin/ls /')
  File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 358, in assertNotError
    self.assertFalse(m.args[1].startswith('Error:'),
AssertionError: True is not false : 'unix call /bin/ls /' errored: Error: It seems the requested command was not available ([Errno 2] No such file or directory: '/bin/ls').

----------------------------------------------------------------------
Ran 1029 tests in 216.732s

FAILED (failures=2, skipped=14)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's wrong with the substitution?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tests still error.

];

checkPhase = ''
python scripts/supybot-test --no-network test --plugins-dir=./plugins/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
python scripts/supybot-test --no-network test --plugins-dir=./plugins/
${python.interpreter} scripts/supybot-test --no-network test --plugins-dir=./plugins/

--replace "version=version" 'version="${version}"'
substituteInPlace plugins/Unix/test.py \
--replace "/bin/ls" "ls" \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tests still error.

@SuperSandro2000
Copy link
Member

@ofborg build python3Packages.limnoria

@progval progval closed this Jun 17, 2021
@Janik-Haag Janik-Haag added the 12. first-time contribution This PR is the author's first one; please be gentle! label Jun 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants