diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-03-15 11:39:31 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-03-15 11:39:31 +0100 |
commit | 68a6e9658047aa04f16870dbc48ba79a2963a650 (patch) | |
tree | ce8c206d0e2da384362a8dd805881d5bfb250663 /modules/async/.nix | |
parent | e69e7b542f9a0aa3101cc5a13e2be30975e6a301 (diff) |
async: Introducing minor tests for immediate conveyors
Diffstat (limited to 'modules/async/.nix')
-rw-r--r-- | modules/async/.nix/derivation.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/async/.nix/derivation.nix b/modules/async/.nix/derivation.nix index aad258f..3992ea1 100644 --- a/modules/async/.nix/derivation.nix +++ b/modules/async/.nix/derivation.nix @@ -22,7 +22,13 @@ in stdenv.mkDerivation { buildInputs = [ forstio.core - ]; + ]; + + doCheck = true; + checkPhase = '' + scons test + ./bin/tests + ''; outputs = ["out" "dev"]; } |