Merge pull request #108079 from rmcgibbo/cfn-lint

python3Packages.cfn-lint: future-proof tests for date impurity issues
This commit is contained in:
Sandro 2021-01-06 00:38:45 +01:00 committed by GitHub
commit 4a91df5bfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
];