about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-12 18:55:50 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-11-12 18:55:50 +0100
commit917400bcffd3a4179c4789a91857a5f1420081dd (patch)
tree05a4f7786dfa370f144f5b66532d8fba15b3440d /pkgs
parent02bf0e589653d34dc919b32a1d3c67b0d0bb2335 (diff)
downloadnixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar.gz
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar.bz2
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar.lz
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar.xz
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.tar.zst
nixlib-917400bcffd3a4179c4789a91857a5f1420081dd.zip
Revert "Python: reduce amount of warnings when building with `buildPython*`"
Turns out that many packages' testsuites rely on the default warnings setup.

This reverts commit c1e003ff2f8a43189d48b7194ec8556aa3d88641.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/python/mk-python-derivation.nix4
-rw-r--r--pkgs/development/python-modules/pytest/default.nix3
2 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix
index ef8ee4e5425b..63ffdbb8c0ac 100644
--- a/pkgs/development/interpreters/python/mk-python-derivation.nix
+++ b/pkgs/development/interpreters/python/mk-python-derivation.nix
@@ -101,10 +101,6 @@ toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attrs [
     ${python.interpreter} ${./catch_conflicts}/catch_conflicts.py
   '' + attrs.postFixup or '''';
 
-  # Print fewer warnings so we have less noise in our logs
-  # The amount of warnings also caused builds to be terminated.
-  PYTHONWARNINGS="once";
-
   meta = {
     # default to python's platforms
     platforms = python.meta.platforms;
diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix
index ad8c8d9ad0da..9412a750a9ab 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -24,8 +24,7 @@ buildPythonPackage rec {
 
   checkPhase = ''
     runHook preCheck
-    # Re-enable warnings because the test suite relies on it.
-    PYTHONWARNINGS= $out/bin/py.test -x testing/
+    $out/bin/py.test -x testing/
     runHook postCheck
   '';