diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-15 21:15:39 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-15 21:15:39 +0300 |
| commit | 4e1bcfb658f77acc038ba4de00513f0fef4b458b (patch) | |
| tree | 91f25e0f6f59e3da6b168f4ba6c752ea7e1b2b06 | |
| parent | 262228c12844bc1d98a5dd1d1f4baa9eb3b97bb4 (diff) | |
fix: test library first, then test docs
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,6 +25,7 @@ distclean: clean test: $(FNLTESTS) @echo "Testing on" $$($(LUA) -v) >&2 + @$(foreach test,$?,$(FENNEL) --lua $(LUA) --metadata $(test) || exit;) ifdef FENNELDOC @fenneldoc --mode check $(FNLDOCS) || exit else @@ -34,7 +35,6 @@ else @echo "https://gitlab.com/andreyorst/fenneldoc" >&2 @echo "" endif - @$(foreach test,$?,$(FENNEL) --lua $(LUA) --metadata $(test) || exit;) testall: $(LUA_EXECUTABLES) @$(foreach lua,$?,LUA=$(lua) make test || exit;) |