From 95f8b6867750a6ea253e57a4730f1126c4bab1b4 Mon Sep 17 00:00:00 2001 From: Jan Hrnko Date: Thu, 2 Jan 2020 12:53:50 +0100 Subject: [PATCH] Drop pyargs --- python/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/default.nix b/python/default.nix index 2c3118f6b..34401c952 100644 --- a/python/default.nix +++ b/python/default.nix @@ -9,7 +9,7 @@ let doCheck = true; # set to false if you want to skip tests checkPhase = '' runHook preCheck - pytest --pyargs tests --ignore tests/test_tx_api.py + pytest tests/ --ignore tests/test_tx_api.py runHook postCheck ''; });