diff --git a/integration-tests/README.md b/integration-tests/README.md new file mode 100644 index 0000000..03ca865 --- /dev/null +++ b/integration-tests/README.md @@ -0,0 +1,4 @@ +# Integration Tests + +A set of integration tests using the NixOS test framework. +To run the tests, use `nix-build default.nix`. diff --git a/integration-tests/default.nix b/integration-tests/default.nix new file mode 100644 index 0000000..ddc0e49 --- /dev/null +++ b/integration-tests/default.nix @@ -0,0 +1,5 @@ +{ + apply = import ./apply; + apply-local = import ./apply-local; + exec = import ./exec; +}