Add test clause to the Makefile

Runs vm provisioning one after one. Takes ~20 minutes for the whole test
on MBP i5.
This commit is contained in:
Aleskey Zalesov 2018-03-13 14:15:51 +03:00
parent 64c7cefe76
commit 4bf94e0efb
1 changed files with 10 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
clean:
@vagrant destroy --force
test:
for i in "validator" "explorer" "moc" "bootnode" "netstat"; do \
echo "Verifying $$i..\n"; \
vagrant up $$i; \
vagrant destroy --force $$i; \
echo "Done $$i verification\n"; \
done