From 16951c5aed9780da1bf67e5bbd137af319211f93 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 23 Jan 2024 19:40:55 -0500 Subject: [PATCH] pre-commit run -a --- src/devenv/cli.py | 8 ++++---- src/modules/languages/python.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/devenv/cli.py b/src/devenv/cli.py index 7cdf25b7c..977883d43 100644 --- a/src/devenv/cli.py +++ b/src/devenv/cli.py @@ -681,11 +681,11 @@ def add(ctx, name, url, follows): ) @click.argument("names", nargs=-1) @click.option("--debug", is_flag=True, help="Run tests in debug mode.") +@click.option("--keep-going", is_flag=True, help="Continue running tests if one fails.") @click.option( - "--keep-going", is_flag=True, help="Continue running tests if one fails.") -@click.option( - "--exclude", multiple=True, - help="A test name to exclude, may be specified multiple times" + "--exclude", + multiple=True, + help="A test name to exclude, may be specified multiple times", ) @click.pass_context def test(ctx, debug, keep_going, exclude, names): diff --git a/src/modules/languages/python.nix b/src/modules/languages/python.nix index ecf7b19ef..e391d195b 100644 --- a/src/modules/languages/python.nix +++ b/src/modules/languages/python.nix @@ -7,7 +7,7 @@ let ++ (lib.optional cfg.manylinux.enable pkgs.pythonManylinuxPackages.manylinux2014Package) # see https://matrix.to/#/!kjdutkOsheZdjqYmqp:nixos.org/$XJ5CO4bKMevYzZq_rrNo64YycknVFJIJTy6hVCJjRlA?via=nixos.org&via=matrix.org&via=nixos.dev ++ [ pkgs.stdenv.cc.cc.lib ] - ); + ); readlink = "${pkgs.coreutils}/bin/readlink -f "; package = pkgs.callPackage "${pkgs.path}/pkgs/development/interpreters/python/wrapper.nix" {