From 5b2d8d75e7f95aaa2779ba69655c7c59e6e7e21d Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Thu, 2 Dec 2021 12:47:57 -0800 Subject: [PATCH] integration-tests: Add default.nix --- integration-tests/README.md | 4 ++++ integration-tests/default.nix | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 integration-tests/README.md create mode 100644 integration-tests/default.nix 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; +}