Unverified Commit e1aedd8d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #252782 from fabaff/slack-bolt-fix

python311Packages.slack-bolt: disable failing tests
parents 6fbeb5a5 1b5342ae
Loading
Loading
Loading
Loading
+43 −15
Original line number Diff line number Diff line
{ buildPythonPackage
{ aiohttp
, bottle
, buildPythonPackage
, chalice
, cherrypy
, django
@@ -7,17 +9,23 @@
, fetchFromGitHub
, flask
, flask-sockets
, gunicorn
, lib
, moto
, numpy
, pyramid
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, sanic
, sanic-testing
, slack-sdk
, starlette
, tornado
, uvicorn
, websocket-client
, websockets
, werkzeug
}:

buildPythonPackage rec {
@@ -25,6 +33,8 @@ buildPythonPackage rec {
  version = "1.18.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "slackapi";
    repo = "bolt-python";
@@ -40,7 +50,13 @@ buildPythonPackage rec {

  propagatedBuildInputs = [ slack-sdk ];

  nativeCheckInputs = [
  passthru.optional-dependencies = {
    async = [
      aiohttp
      websockets
    ];
    adapter = [
      bottle
      chalice
      cherrypy
      django
@@ -48,15 +64,23 @@ buildPythonPackage rec {
      fastapi
      flask
      flask-sockets
      gunicorn
      moto
      pyramid
    pytest-asyncio
    pytestCheckHook
      sanic
      sanic-testing
      starlette
      tornado
      uvicorn
      websocket-client
      werkzeug
    ];
  };

  nativeCheckInputs = [
    pytest-asyncio
    pytestCheckHook
  ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);

  # Work around "Read-only file system: '/homeless-shelter'" errors
  preCheck = ''
@@ -66,6 +90,9 @@ buildPythonPackage rec {
  disabledTestPaths = [
    # boddle is not packaged as of 2023-07-15
    "tests/adapter_tests/bottle/"
    # Tests are blocking at some point. Blocking could be performance-related.
    "tests/scenario_tests_async/"
    "tests/slack_bolt_async/"
  ];

  disabledTests = [
@@ -82,6 +109,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "A framework to build Slack apps using Python";
    homepage = "https://github.com/slackapi/bolt-python";
    changelog = "https://github.com/slackapi/bolt-python/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ samuela ];
  };