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: b5e481a07efa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a110c8e69dbd
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 20, 2019

  1. pythonPackages.zope-deferredimport: disable tests

    relies on zope-testrunner. Import fails, likely because of how
    zope-testrunner functions.
    FRidh committed Oct 20, 2019
    Copy the full SHA
    a110c8e View commit details
Showing with 3 additions and 1 deletion.
  1. +2 −0 pkgs/development/python-modules/zope-deferredimport/default.nix
  2. +1 −1 pkgs/development/python-modules/zope_testrunner/default.nix
Original file line number Diff line number Diff line change
@@ -23,6 +23,8 @@ buildPythonPackage rec {
zope-testrunner --test-path=src []
'';

doCheck = false;

meta = with lib; {
description = "Allows you to perform imports names that will only be resolved when used in the code";
homepage = https://github.com/zopefoundation/zope.deferredimport;
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ buildPythonPackage rec {

propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];

doCheck = !stdenv.isDarwin;
doCheck = false; # custom test modifies sys.path

meta = with stdenv.lib; {
description = "A flexible test runner with layer support";