diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 1edbf78..fa0aa83 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -7,8 +7,8 @@ on: branches: - main env: - NU_VERSION: 0.100.0 - BASH_ENV_JSON_VERSION: 0.7.0 + NU_VERSION: 0.102.0 + BASH_ENV_JSON_VERSION: 0.10.1 jobs: test: diff --git a/extra-module-tests.nu b/extra-module-tests.nu index d84af7f..fd24d28 100644 --- a/extra-module-tests.nu +++ b/extra-module-tests.nu @@ -12,14 +12,14 @@ def test_shell_variables [] { #[test] def test_shell_variables_from_file [] { - let actual = bash-env -s tests/shell-variables.env + let actual = bash-env -s tests/shell-variables.env | reject meta let expected = { shellvars: { A: "not exported" } env: { B: "exported" } } assert equal $actual $expected } #[test] def test_shell_functions [] { - let actual = bash-env -f [f2 f3] tests/shell-functions.env + let actual = bash-env -f [f2 f3] tests/shell-functions.env | reject meta let expected = { "env": { "B": "1", diff --git a/flake.lock b/flake.lock index 950976d..9cf191e 100644 --- a/flake.lock +++ b/flake.lock @@ -60,11 +60,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1724300212, - "narHash": "sha256-x3jl6OWTs+L9C7EtscuWZmGZWI0iSBDafvg3X7JMa1A=", + "lastModified": 1739138025, + "narHash": "sha256-M4ilIfGxzbBZuURokv24aqJTbdjPA9K+DtKUzrJaES4=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "4de4818c1ffa76d57787af936e8a23648bda6be4", + "rev": "b2243f41e860ac85c0b446eadc6930359b294e79", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index e91c353..26ec362 100644 --- a/flake.nix +++ b/flake.nix @@ -47,13 +47,15 @@ inherit (pkgs) mkShell bashInteractive - jq; + jq + nushell; in mkShell { nativeBuildInputs = [ bashInteractive jq + nushell ]; };