Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Changed buildbot makefile to use 'pytest'
- Loading branch information
Showing
with
1 addition
and
2 deletions.
-
+1
−2
Makefile.buildbot
|
|
@@ -1,9 +1,8 @@ |
|
|
TRIAL := $(shell which trial) |
|
|
BRANCH := $(shell git rev-parse --abbrev-ref HEAD) |
|
|
export PYTHONPATH=$(PWD) |
|
|
|
|
|
test: |
|
|
coverage run --branch $(TRIAL) --reporter=text tests |
|
|
py.test --cov=scrapy --cov-report= scrapy tests |
|
|
rm -rf htmlcov && coverage html |
|
|
-s3cmd sync -P htmlcov/ s3://static.scrapy.org/coverage-scrapy-$(BRANCH)/ |
|
|
|
|
|