1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00
This commit is contained in:
Jakub Roztocil 2019-12-04 23:31:47 +01:00
parent 348cc7d5c5
commit e4a3ce8b9d

View File

@ -75,13 +75,13 @@ venv:
test:
@echo $(H1)Running tests on the current Python interpreter $(HEADER_EXTRA) $(H1END)
@echo $(H1)Running tests$(HEADER_EXTRA)$(H1END)
$(VENV_BIN)/py.test $(COV) ./httpie $(COV) ./tests --doctest-modules --verbose ./httpie ./tests
@echo
test-cover: COV=--cov
test-cover: HEADER_EXTRA='(with coverage)'
test-cover: HEADER_EXTRA=' (with coverage)'
test-cover: test