mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
15 lines
236 B
Nix
15 lines
236 B
Nix
{ writeScript
|
|
, direnv
|
|
, python3
|
|
, lib
|
|
, nix
|
|
, coreutils
|
|
, gnugrep
|
|
}:
|
|
writeScript "test-runner" ''
|
|
set -e
|
|
export PATH=${lib.makeBinPath [ direnv nix coreutils gnugrep ]}
|
|
|
|
echo run unittest
|
|
${lib.getExe python3.pkgs.pytest} .
|
|
''
|