summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorYevhen Shymotyuk <fly1ngdream@pm.me>2020-08-24 06:51:50 +0300
committerJon <jonringer@users.noreply.github.com>2020-08-23 23:47:21 -0700
commita332da8588aeea4feb9359d23f58d95520899e3c (patch)
tree4262442f223165f2e712d28963339f6ba2d71728 /pkgs
parent4ee94fb9489fe48bd7d3be43ed627829f3bfb841 (diff)
downloadnixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar.gz
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar.bz2
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar.lz
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar.xz
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.tar.zst
nixpkgs-a332da8588aeea4feb9359d23f58d95520899e3c.zip
Comment disabling of tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/userpath/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/userpath/default.nix b/pkgs/development/python-modules/userpath/default.nix
index e9653a4b2a8..8366a56158d 100644
--- a/pkgs/development/python-modules/userpath/default.nix
+++ b/pkgs/development/python-modules/userpath/default.nix
@@ -16,6 +16,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ click distro ];
 
+  # test suite is difficult to emulate in sandbox due to shell manipulation
   doCheck = false;
 
   pythonImportsCheck = [ "click" "userpath" ];