run build before test so static file tests work without precondition

This commit is contained in:
meeb 2022-09-04 11:58:13 +10:00
parent 05d50c958e
commit 1ba865cf0d
1 changed files with 1 additions and 1 deletions

View File

@ -29,5 +29,5 @@ runcontainer:
$(docker) run --rm --name $(name) --env-file dev.env --log-opt max-size=50m -ti -p 4848:4848 $(image)
test:
test: build
cd tubesync && $(python) manage.py test --verbosity=2 && cd ..