about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-randomly
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2018-12-23 12:40:51 -0500
committerRobert Schütz <rschuetz17@gmail.com>2018-12-23 18:40:51 +0100
commitff004d0b14afd86987f7674ea82b07b11f77648d (patch)
tree1b8c6b2b8fd8525b9a961f728578acf2d3174b4f /pkgs/development/python-modules/nose-randomly
parent4ecf1744c9b45eeef14de64cbbdd7497c72ffd35 (diff)
pythonPackages.nose-randomly: add checkPhase (#52628)
Diffstat (limited to 'pkgs/development/python-modules/nose-randomly')
-rw-r--r--pkgs/development/python-modules/nose-randomly/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/nose-randomly/default.nix b/pkgs/development/python-modules/nose-randomly/default.nix
index 2bfa5cb0f0500..a9e31016a1f81 100644
--- a/pkgs/development/python-modules/nose-randomly/default.nix
+++ b/pkgs/development/python-modules/nose-randomly/default.nix
@@ -19,6 +19,10 @@ buildPythonPackage rec {
     nose
   ];
 
+  checkPhase = ''
+    nosetests
+  '';
+
   meta = with lib; {
     description = "Nose plugin to randomly order tests and control random.seed";
     homepage = https://github.com/adamchainz/nose-randomly;