summaryrefslogtreecommitdiff
path: root/Makefile
blob: 53b5383861afb994008121a49dfa4795a2416464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test: import-cldr
	@py.test babel tests

import-cldr:
	@./scripts/download_import_cldr.py

clean-cldr:
	@rm babel/localedata/*.dat
	@rm babel/global.dat

develop:
	@pip install --editable .

tox-test:
	@PYTHONDONTWRITEBYTECODE= tox

.PHONY: test develop tox-test