From f37063551813d5cb8cf4dfb2a3c03c9143411538 Mon Sep 17 00:00:00 2001 From: DavHau Date: Fri, 21 Jul 2023 13:51:49 +0200 Subject: [PATCH] python: fix dev shell command `check` --- pkgs/clan-cli/shell.nix | 2 +- templates/python-project/shell.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/clan-cli/shell.nix b/pkgs/clan-cli/shell.nix index 79cb983bb..39e0df814 100644 --- a/pkgs/clan-cli/shell.nix +++ b/pkgs/clan-cli/shell.nix @@ -16,7 +16,7 @@ let ] ); checkScript = pkgs.writeScriptBin "check" '' - nix build -f . tests.check -L "$@" + nix build -f . tests -L "$@" ''; devShell = pkgs.mkShell { packages = [ diff --git a/templates/python-project/shell.nix b/templates/python-project/shell.nix index 15a941b12..8b7985030 100644 --- a/templates/python-project/shell.nix +++ b/templates/python-project/shell.nix @@ -14,7 +14,7 @@ let ] ); checkScript = pkgs.writeScriptBin "check" '' - nix build -f . tests.check -L "$@" + nix build -f . tests -L "$@" ''; devShell = pkgs.mkShell { packages = [