swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 9c8455eaf7839a5625c6acb3fcf5cc39a01abc1a authored by Nicolas Dandrimont on 12 June 2017, 13:38:13 UTC
bump requirements for new version of scheduler
Tip revision: 9c8455e
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