mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 17:54:53 +01:00
Without the change `tests` eval fails as:
$ nix build --no-link -f. spark.tests --arg config '{ allowAliases = false; }'
error: attribute 'nixosTest' missing
12| };
13| testSparkCluster = { sparkPackage, ... }: pkgs.nixosTest ({
| ^
14| name = "spark";
Did you mean nixosTests?
`nixosTest` is an alias defined as:
pkgs/top-level/aliases.nix: nixosTest = testers.nixosTest; # Added 2022-05-05
|
||
|---|---|---|
| .. | ||
| default.nix | ||
| spark_sample.py | ||