mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-11 23:31:33 +00:00
22 lines
530 B
Makefile
22 lines
530 B
Makefile
TRIAL := $(shell which trial)
|
|
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
|
export PYTHONPATH=$(PWD)
|
|
|
|
test:
|
|
coverage run --branch $(TRIAL) --reporter=text tests
|
|
rm -rf htmlcov && coverage html
|
|
-s3cmd sync -P htmlcov/ s3://static.scrapy.org/coverage-scrapy-$(BRANCH)/
|
|
|
|
build:
|
|
test $(BRANCH) != master || git describe >scrapy/VERSION
|
|
python extras/makedeb.py build
|
|
|
|
clean:
|
|
git checkout debian scrapy/VERSION
|
|
git clean -dfq
|
|
|
|
pypi:
|
|
umask 0022 && chmod -R a+rX . && python setup.py sdist upload
|
|
|
|
.PHONY: clean test build
|