From 4976d7ec3f1126618f2c312002811157406fc2ee Mon Sep 17 00:00:00 2001 From: Nathan Yong Date: Mon, 1 Jul 2019 13:20:13 +1000 Subject: [PATCH] watson: use pytest for testing --- pkgs/applications/office/watson/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/applications/office/watson/default.nix b/pkgs/applications/office/watson/default.nix index cf23171ba1e..16df0b294c1 100644 --- a/pkgs/applications/office/watson/default.nix +++ b/pkgs/applications/office/watson/default.nix @@ -12,10 +12,8 @@ buildPythonApplication rec { sha256 = "249313996751f32f38817d424cbf8d74956461df1439f0ee3a962fcc3c77225d"; }; - # uses tox, test invocation fails - doCheck = true; checkPhase = '' - py.test -vs tests + pytest -vs tests ''; checkInputs = [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];