Revision 3ee65b8622d504f50d762d66bad3fef248a270c8 authored by Nicolas Dandrimont on 27 October 2015, 10:12:38 UTC, committed by Nicolas Dandrimont on 27 October 2015, 10:12:38 UTC
This should reduce the impact of vacuum on the directory table, as the
final entries are put in place as is instead of performing updates on
the actual table.
1 parent 95cd123
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