aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e115ba478be8eedc167c356dfd24f78df96d9850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
bootstrap:
	pip install -e . --use-mirrors
	pip install "file://`pwd`#egg=brevisurl" --use-mirrors
	./scripts/setup.sh
	python manage.py syncdb --noinput --migrate


test: bootstrap
	@echo "Running Python tests"
	python manage.py test brevisurl
	@echo ""

clean:
	rm -rf ./dist
	rm -rf ./django_brevisurl.egg-info
	rm -rf test.db
	rm -rf settings.py