python3Packages.pysnooper: disable failing test on x86_64-darwin (#506798)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
@@ -22,6 +23,11 @@ buildPythonPackage rec {
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
|
||||
# timing-sensitive and often breaks on x86_64-darwin
|
||||
"test_relative_time"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pysnooper" ];
|
||||
|
||||
meta = {
|
||||
|
||||
Reference in New Issue
Block a user