mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
16 lines
368 B
Makefile
16 lines
368 B
Makefile
# Common commands
|
|
#
|
|
# Contributing manual:
|
|
# - https://nix-community.github.io/home-manager/#ch-contributing
|
|
|
|
# List tests matching a pattern `pattern`
|
|
list *pattern:
|
|
nix run .#tests -- -l {{pattern}}
|
|
|
|
# Run all tests matching a pattern `pattern`
|
|
test *pattern:
|
|
nix run .#tests -- {{pattern}}
|
|
|
|
# Run integration tests
|
|
integration_tests:
|
|
nix run .#tests -- -t -l
|