about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorNathan Yong <nathyong@users.noreply.github.com>2019-07-01 13:20:13 +1000
committerNathan Yong <nathyong@users.noreply.github.com>2019-07-01 13:20:13 +1000
commit4976d7ec3f1126618f2c312002811157406fc2ee (patch)
treeed4d14d219d88eda5836f9239950f759cc98747d /pkgs/applications/office
parent50855c5141d2f2d3ffc0c32dd457f7717e5b271b (diff)
downloadnixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar.gz
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar.bz2
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar.lz
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar.xz
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.tar.zst
nixlib-4976d7ec3f1126618f2c312002811157406fc2ee.zip
watson: use pytest for testing
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/watson/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/office/watson/default.nix b/pkgs/applications/office/watson/default.nix
index cf23171ba1e7..16df0b294c16 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 ];