summary refs log tree commit diff
path: root/pkgs/README.md
diff options
context:
space:
mode:
authorPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-11-01 11:55:29 +0100
committerPaul Meyer <49727155+katexochen@users.noreply.github.com>2023-11-01 11:55:29 +0100
commit7d7744f15f8f5eef18abced9551754f2f70436e4 (patch)
treea39c506807af0339571cd565c53ebcf896df4c4b /pkgs/README.md
parent143680787eb5e885b0d7e2af223c7884cef5ed32 (diff)
downloadnixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar.gz
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar.bz2
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar.lz
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar.xz
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.tar.zst
nixpkgs-7d7744f15f8f5eef18abced9551754f2f70436e4.zip
pkgs: fix nixosTests command in docs
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
Diffstat (limited to 'pkgs/README.md')
-rw-r--r--pkgs/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/README.md b/pkgs/README.md
index 4845cfa3175..642833d968f 100644
--- a/pkgs/README.md
+++ b/pkgs/README.md
@@ -568,7 +568,7 @@ This is how the pull request looks like in this case: [https://github.com/NixOS/
 To run the main types of tests locally:
 
 - Run package-internal tests with `nix-build --attr pkgs.PACKAGE.passthru.tests`
-- Run [NixOS tests](https://nixos.org/manual/nixos/unstable/#sec-nixos-tests) with `nix-build --attr nixosTest.NAME`, where `NAME` is the name of the test listed in `nixos/tests/all-tests.nix`
+- Run [NixOS tests](https://nixos.org/manual/nixos/unstable/#sec-nixos-tests) with `nix-build --attr nixosTests.NAME`, where `NAME` is the name of the test listed in `nixos/tests/all-tests.nix`
 - Run [global package tests](https://nixos.org/manual/nixpkgs/unstable/#sec-package-tests) with `nix-build --attr tests.PACKAGE`, where `PACKAGE` is the name of the test listed in `pkgs/test/default.nix`
 - See `lib/tests/NAME.nix` for instructions on running specific library tests