diff options
author | hut <hut@lavabit.com> | 2011-09-28 21:19:29 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-09-28 21:20:47 +0200 |
commit | b3bc8431554c8746bf8eef21237d15df6e2d5356 (patch) | |
tree | 8513732ae691097e6452a6959849bbb3320493cb /Makefile | |
parent | ee254689207889e68061f0680f4d6ac47d5ed408 (diff) | |
download | ranger-b3bc8431554c8746bf8eef21237d15df6e2d5356.tar.gz |
removed tests. (half of them are outdated)
To get them back, you can always simply revert this commit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile index ed100a8e..77fad740 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,6 @@ SETUPOPTS ?= '--record=install_log.txt' DOCDIR ?= doc/pydoc DESTDIR ?= / PYOPTIMIZE ?= 1 -BMCOUNT ?= 5 # how often to run the benchmarks? CWD = $(shell pwd) @@ -43,7 +42,6 @@ help: @echo 'make clean: Remove the compiled files (*.pyc, *.pyo)' @echo 'make cleandoc: Remove the pydoc documentation' @echo 'make snapshot: Create a tar.gz of the current git revision' - @echo 'make test: Run all unittests.' install: $(PYTHON) setup.py install $(SETUPOPTS) \ @@ -73,13 +71,7 @@ manhtml: cleandoc: test -d $(DOCDIR) && rm -f -- $(DOCDIR)/*.html || true -test: - @$(PYTHON) test/all_tests.py 1 - -bm: - @$(PYTHON) test/all_benchmarks.py $(BMCOUNT) - snapshot: git archive --prefix='$(NAME)-$(VERSION)/' --format=tar HEAD | gzip > $(SNAPSHOT_NAME) -.PHONY: default options compile clean doc cleandoc test bm snapshot install man +.PHONY: default options compile clean doc cleandoc snapshot install man |