Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0af4d59732bf
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4a91df5bfae7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 1, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eb7115d View commit details

Commits on Jan 5, 2021

  1. Merge pull request #108079 from rmcgibbo/cfn-lint

    python3Packages.cfn-lint: future-proof tests for date impurity issues
    SuperSandro2000 authored Jan 5, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    4a91df5 View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/development/python-modules/cfn-lint/default.nix
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/cfn-lint/default.nix
Original file line number Diff line number Diff line change
@@ -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"
];