summary refs log tree commit diff
path: root/pkgs/development/python-modules/cfn-lint
diff options
context:
space:
mode:
authorRobert T. McGibbon <rmcgibbo@gmail.com>2021-01-01 16:19:38 -0500
committerRobert T. McGibbon <rmcgibbo@gmail.com>2021-01-01 17:42:46 -0500
commiteb7115dc3699be7f58ba6f2962797365db3b182b (patch)
tree5fa9f7f0d5020e0083fc0f74baf7d334ed47fb3c /pkgs/development/python-modules/cfn-lint
parent43939ba8a82ce8a2941ca059c1dec5ac68f58d42 (diff)
downloadnixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar.gz
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar.bz2
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar.lz
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar.xz
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.tar.zst
nixpkgs-eb7115dc3699be7f58ba6f2962797365db3b182b.zip
python3Packages.cfn-lint: future-proof tests for date impurity issues
Diffstat (limited to 'pkgs/development/python-modules/cfn-lint')
-rw-r--r--pkgs/development/python-modules/cfn-lint/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cfn-lint/default.nix b/pkgs/development/python-modules/cfn-lint/default.nix
index 0a27f8222c0..f55042c58d2 100644
--- a/pkgs/development/python-modules/cfn-lint/default.nix
+++ b/pkgs/development/python-modules/cfn-lint/default.nix
@@ -59,6 +59,12 @@ buildPythonPackage rec {
   '';
 
   disabledTests = [
+    # These tests depend on the current date, for example because of issues like this.
+    # This makes it possible for them to succeed on hydra and then begin to fail without
+    # any code changes.
+    # https://github.com/aws-cloudformation/cfn-python-lint/issues/1705
+    # See also: https://github.com/NixOS/nixpkgs/issues/108076
+    "TestQuickStartTemplates"
     # requires git directory
     "test_update_docs"
   ];