Skip to content

Commit

Permalink
pre-commit run -a
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Jan 24, 2024
1 parent 0a2265a commit 16951c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/devenv/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion src/modules/languages/python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 16951c5

Please sign in to comment.