diff options
author | Stephen Finucane <stephen@that.guru> | 2017-12-22 18:50:51 +0000 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-12-29 13:02:31 +0000 |
commit | 7c0723fd46825ea44a98ae22ac45d08ca0ddd88b (patch) | |
tree | 4fe63fccb8c6f158b88d69193d926158ae3f53e2 /Makefile | |
parent | 529c96a3c991d167edd3f7181284b1f21315a486 (diff) | |
download | sphinx-git-7c0723fd46825ea44a98ae22ac45d08ca0ddd88b.tar.gz |
tests: Remove 'tests/run.py'
This is no longer necessary. One test needs to be modified to deal with
how 'python -m pytest' modifies the PATH.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -69,7 +69,7 @@ reindent: .PHONY: test test: - @cd tests; $(PYTHON) run.py -v $(TEST) + @$(PYTHON) -m pytest -v $(TEST) .PHONY: test-async test-async: @@ -77,7 +77,7 @@ test-async: .PHONY: covertest covertest: - @cd tests; $(PYTHON) run.py -v --cov=sphinx --junitxml=.junit.xml $(TEST) + @$(PYTHON) -m pytest -v --cov=sphinx --junitxml=.junit.xml $(TEST) .PHONY: build build: |