From 6fbd193ef4c19ddc9654dade338ddd5dedc14b78 Mon Sep 17 00:00:00 2001 From: Ajeet D'Souza <98ajeet@gmail.com> Date: Thu, 3 Jun 2021 21:07:41 +0530 Subject: [PATCH] Update Nushell and re-enable tests --- shell.nix | 4 ++-- src/shell.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/shell.nix b/shell.nix index 0d6e86a..d03c000 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ let pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz") {}; - pkgs-master = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/470e4a9bbc98b171a7e733dfc9e62531f7b9ceca.tar.gz") {}; - pkgs-python = pkgs.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]); + pkgs-master = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/ebe28430ba2d6d0e5562bf69c4afe907645fac61.tar.gz") {}; + pkgs-python = pkgs-master.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]); in pkgs.mkShell { buildInputs = [ diff --git a/src/shell.rs b/src/shell.rs index 1500e6b..8a3ef78 100644 --- a/src/shell.rs +++ b/src/shell.rs @@ -171,7 +171,6 @@ mod tests { .stderr(""); } - #[ignore] #[rstest] fn nushell_nushell( #[values(None, Some("z"))] cmd: Option<&str>,