From 7688f425bab8bd99b91dbaf9afae5b6f88a89f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Mon, 14 Apr 2025 00:58:28 +0200 Subject: [PATCH] python12Packages.textual-image: enable tests --- pkgs/development/python-modules/textual-image/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/textual-image/default.nix b/pkgs/development/python-modules/textual-image/default.nix index 9449d2295752..90e866c8ad0c 100644 --- a/pkgs/development/python-modules/textual-image/default.nix +++ b/pkgs/development/python-modules/textual-image/default.nix @@ -9,6 +9,7 @@ # tests pillow, pytestCheckHook, + syrupy, setuptools, }: @@ -34,11 +35,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook + syrupy ]; pythonImportsCheck = [ "textual_image" ]; - doCheck = false; # tests require [syrupy](https://github.com/syrupy-project/syrupy) + doCheck = true; meta = { description = "Render images in the terminal with Textual and rich";