Revision 60a0be9f30dcdee2d498d6761e41647a28854649 authored by Antoine R. Dumont (@ardumont) on 20 May 2016, 13:26:43 UTC, committed by Antoine R. Dumont (@ardumont) on 20 May 2016, 13:26:43 UTC
This is the main function used when deployed
1 parent b78a9fa
Raw File
Makefile.local
# run only tests that do not require database setup
test-nodb:
	$(NOSE) $(NOSEFLAGS) -a '!db'

# run only tests that do require database setup
test-db:
	$(NOSE) $(NOSEFLAGS) -a 'db'
back to top