mirror of
https://github.com/0xrsydn/nix-hermes-agent.git
synced 2026-08-07 00:53:52 +00:00
test: add skills coexistence e2e coverage
This commit is contained in:
parent
481c62c568
commit
1a1f06aaa5
4 changed files with 83 additions and 4 deletions
14
flake.nix
14
flake.nix
|
|
@ -23,10 +23,16 @@
|
|||
default = self.packages.${system}.hermes-agent;
|
||||
};
|
||||
|
||||
checks = import ./checks.nix {
|
||||
inherit pkgs;
|
||||
inherit (self.packages.${system}) hermes-agent;
|
||||
};
|
||||
checks =
|
||||
(import ./checks.nix {
|
||||
inherit pkgs;
|
||||
inherit (self.packages.${system}) hermes-agent;
|
||||
})
|
||||
// {
|
||||
skills-coexistence = import ./tests/skills-coexistence.nix {
|
||||
inherit self nixpkgs system;
|
||||
};
|
||||
};
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [ self.packages.${system}.hermes-agent ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue