Add devshell and initial bats tests
This commit is contained in:
parent
af8fae68fe
commit
d3b3862040
4 changed files with 102 additions and 4 deletions
13
flake.nix
13
flake.nix
|
|
@ -15,6 +15,19 @@
|
|||
in
|
||||
{
|
||||
packages.default = pkgs.callPackage ./default.nix { };
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [
|
||||
(pkgs.bats.withLibraries (p: [
|
||||
p.bats-assert
|
||||
p.bats-support
|
||||
p.bats-file
|
||||
]))
|
||||
pkgs.python3
|
||||
pkgs.python3Packages.flake8
|
||||
pkgs.shellcheck
|
||||
pkgs.shfmt
|
||||
];
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue