Make test/ a standalone project

This commit is contained in:
2023-05-19 15:27:54 -05:00
parent e8d8272510
commit 40270b0030
36 changed files with 1070 additions and 1097 deletions

View File

@@ -4,20 +4,8 @@
VERSION := 0.3
clean:
rm -rfv build Manifest.toml test/Manifest.toml deps/formatter/build deps/formatter/Manifest.toml
docs:
cd docs; julia --project=. make.jl; cd ..
rsync -avP --delete-after docs/build/ ../docs/$(VERSION)/
format:
cd deps/formatter; ../../juliaw format.jl
test: test/Manifest.toml
./juliaw test/runtests.jl
test/Manifest.toml: test/Project.toml
julia --project=test -e "using Pkg; Pkg.instantiate()"
.PHONY: docs test format install-deps
.PHONY: docs