Rename intern/extern tests to internal/external

This commit is contained in:
Antoine Eiche 2021-05-01 08:21:27 +02:00
parent 5248dce1ea
commit 8b28705621
4 changed files with 10 additions and 10 deletions

View file

@ -13,8 +13,8 @@ You can run the testsuite via
:: ::
$ nix-build tests -A extern.nixpkgs_20_03 $ nix-build tests -A external.nixpkgs_20_03
$ nix-build tests -A intern.nixpkgs_unstable $ nix-build tests -A internal.nixpkgs_unstable
... ...
Contributing to the documentation Contributing to the documentation

View file

@ -1,9 +1,9 @@
# Generate an attribute sets containing all tests for all releaeses # Generate an attribute sets containing all tests for all releaeses
# It looks like: # It looks like:
# - extern.nixpkgs_20.03 # - external.nixpkgs_20.03
# - extern.nixpkgs_unstable # - external.nixpkgs_unstable
# - intern.nixpkgs_20.03 # - internal.nixpkgs_20.03
# - intern.nixpkgs_unstable # - internal.nixpkgs_unstable
with builtins; with builtins;
@ -32,8 +32,8 @@ let
]; ];
testNames = [ testNames = [
"intern" "internal"
"extern" "external"
"clamav" "clamav"
"multiple" "multiple"
]; ];

View file

@ -17,7 +17,7 @@
{ pkgs ? import <nixpkgs> {}}: { pkgs ? import <nixpkgs> {}}:
pkgs.nixosTest { pkgs.nixosTest {
name = "extern"; name = "external";
nodes = { nodes = {
server = { config, pkgs, ... }: server = { config, pkgs, ... }:
{ {

View file

@ -37,7 +37,7 @@ let
passwordFile = pkgs.writeText "password" "my-password"; passwordFile = pkgs.writeText "password" "my-password";
in in
pkgs.nixosTest { pkgs.nixosTest {
name = "intern"; name = "internal";
nodes = { nodes = {
machine = { config, pkgs, ... }: { machine = { config, pkgs, ... }: {
imports = [ imports = [