mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-23 02:39:40 +01:00
misc: Add Justfile
This just lists the commands in the Contributing manual
This commit is contained in:
parent
c3a5e5f0df
commit
a95c53c00f
1 changed files with 16 additions and 0 deletions
16
Justfile
Normal file
16
Justfile
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue