Update Nushell and re-enable tests

This commit is contained in:
Ajeet D'Souza 2021-06-03 21:07:41 +05:30
parent 36f3967f9c
commit 6fbd193ef4
2 changed files with 2 additions and 3 deletions

View File

@ -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 = [

View File

@ -171,7 +171,6 @@ mod tests {
.stderr("");
}
#[ignore]
#[rstest]
fn nushell_nushell(
#[values(None, Some("z"))] cmd: Option<&str>,