mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 09:29:41 +08:00
Makefile: init (#2351)
The idea of this file is to make it easier to run tests. It will ensure that the tests are running with the correct NIX_PATH (pointing it to e.g.: unstable), and also allowing it to run either one or all tests.
This commit is contained in:
committed by
GitHub
parent
52e84a040e
commit
66d9dbfa36
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
.PHONY: all all-tests test
|
||||
NIX_PATH := nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz
|
||||
|
||||
all: all-tests
|
||||
|
||||
all-tests:
|
||||
$(MAKE) test TEST=all
|
||||
|
||||
test:
|
||||
ifndef TEST
|
||||
$(error Use 'make test TEST=<test_name>' to run desired test)
|
||||
endif
|
||||
nix-shell --pure tests -I ${NIX_PATH} -A run.${TEST}
|
||||
Reference in New Issue
Block a user