about summary refs log tree commit diff
path: root/nixos/lib
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-02-09 21:08:11 -0500
committerGitHub <noreply@github.com>2020-02-09 21:08:11 -0500
commitaa4ba502d6b545da809cc1828412f6866e8e2b02 (patch)
tree8ef5294a541c9cec19f54a95e4bfbff97036f89e /nixos/lib
parent55ace3be68924df2a1639094c37a6f5b73afd2e1 (diff)
parent0945178b3c6fd9e33002dd6e3c6f77dfca49565a (diff)
downloadnixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar.gz
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar.bz2
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar.lz
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar.xz
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.tar.zst
nixlib-aa4ba502d6b545da809cc1828412f6866e8e2b02.zip
Merge pull request #79335 from flokli/deprecate-perl-vm-tests
nixos/testing: add deprecation notice for Perl VM tests
Diffstat (limited to 'nixos/lib')
-rw-r--r--nixos/lib/testing.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/lib/testing.nix b/nixos/lib/testing.nix
index ae8ecd6270ce..c82abd1f9900 100644
--- a/nixos/lib/testing.nix
+++ b/nixos/lib/testing.nix
@@ -19,7 +19,11 @@ in rec {
   inherit pkgs;
 
 
-  testDriver = stdenv.mkDerivation {
+  testDriver = lib.warn ''
+    Perl VM tests are deprecated and will be removed for 20.09.
+    Please update your tests to use the python test driver.
+    See https://github.com/NixOS/nixpkgs/pull/71684 for details.
+  '' stdenv.mkDerivation {
     name = "nixos-test-driver";
 
     buildInputs = [ makeWrapper perl ];