mirror of
https://github.com/OliveTin/OliveTin
synced 2026-08-24 11:36:37 +00:00
* bugfix: use filepath to set correct configDir in Windows * test: improve unittest rep folder creation --------- Co-authored-by: wushuzh <wushuzh@outlook.com>
24 lines
370 B
Makefile
24 lines
370 B
Makefile
default: test-install test-run
|
|
|
|
test-install:
|
|
npm install --no-fund
|
|
|
|
test-run:
|
|
npx mocha -t 10000
|
|
|
|
find-flakey-tests:
|
|
echo "Running test-run infinately"
|
|
sh -c "while make test-run; do :; done"
|
|
|
|
nginx:
|
|
podman-compose up -d nginx
|
|
|
|
clean:
|
|
podman-compose down
|
|
|
|
getsnapshot:
|
|
rm -rf /opt/OliveTin-snapshot/*
|
|
gh run download -D /opt/OliveTin-snapshot/
|
|
|
|
.PHONY: default
|