summary refs log blame commit diff
path: root/pkgs/development/python-modules/python-manilaclient/tests.nix
blob: 61615456225a4a33ff0a376867f089eff9ed5650 (plain) (tree)






























                                        
{ buildPythonPackage
, python-manilaclient
, stestr
, ddt
, tempest
, mock
, python-openstackclient
}:

buildPythonPackage rec {
  pname = "python-manilaclient-tests";
  inherit (python-manilaclient) version;

  src = python-manilaclient.src;

  dontBuild = true;
  dontInstall = true;

  checkInputs = [
    python-manilaclient
    stestr
    ddt
    tempest
    mock
    python-openstackclient
  ];

  checkPhase = ''
    stestr run
  '';
}