diff options
author | Stephen Finucane <stephen@that.guru> | 2017-10-26 16:49:44 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-12-18 20:10:18 +0000 |
commit | e243e827236467b67b057b83131248ef1742aacb (patch) | |
tree | f076b6d7146702d301fd946e93d771711d6e2d0f /Makefile | |
parent | 41c19ddf91018e2b9a8c0001a24a78f3ecb893be (diff) | |
download | sphinx-git-e243e827236467b67b057b83131248ef1742aacb.tar.gz |
tests: Ignore tests using 'collect_ignore'
Per the pytest docs [1], this is the preferred way to ignore tests. This
necessitates removing the 'test-async' target as it no longer makes any
sense.
[1] https://docs.pytest.org/en/latest/example/pythoncollection.html
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,11 +69,11 @@ reindent: .PHONY: test test: - @cd tests; $(PYTHON) run.py --ignore py35 -v $(TEST) + @cd tests; $(PYTHON) run.py -v $(TEST) .PHONY: test-async test-async: - @cd tests; $(PYTHON) run.py -v $(TEST) + @echo "This target no longer does anything and will be removed imminently" .PHONY: covertest covertest: |