From a312764d69fc6f7254367913e991f7a47a31caeb Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Sun, 24 Nov 2013 23:46:24 +0100 Subject: [PATCH 1/2] Remove the mention of tests from development.md because tests have been removed --- README.md | 5 ----- docs/development.md | 4 ---- 2 files changed, 9 deletions(-) diff --git a/README.md b/README.md index 974e219..e01e640 100644 --- a/README.md +++ b/README.md @@ -115,11 +115,6 @@ with the command: make docs -Tests are available in `./tests/` and require Python 3.3 or Python 2.7 with -[mock][mock]. Run unit tests with the command: - - make test - OPTIONS ------- diff --git a/docs/development.md b/docs/development.md index 626554d..e0b1544 100644 --- a/docs/development.md +++ b/docs/development.md @@ -7,7 +7,3 @@ Documentation is in various files under `./docs/`. Build documentation with the command: make docs - -Unit tests are available in `./tests/`. Run unit tests with the command: - - make test From d1fe6fead9556ed4cf9ac621c01f8558086e6935 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Sun, 24 Nov 2013 23:47:14 +0100 Subject: [PATCH 2/2] Remove tests from Makefile --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b8fbf22..5c2e671 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump) TAGNAME = release-v$(VERSION) -.PHONY: docs install uninstall tar test +.PHONY: docs install uninstall tar install: install.sh @@ -13,7 +13,7 @@ docs: pandoc -s -w man docs/manpage_header.md docs/header.md docs/body.md -o docs/autojump.1 pandoc -s -w markdown docs/header.md docs/install.md docs/development.md docs/body.md -o README.md -release: docs test +release: docs # Check for tag existence # git describe release-$(VERSION) 2>&1 >/dev/null || exit 1 @@ -34,6 +34,3 @@ tar: # Create tagged archive git archive --format=tar --prefix autojump_v$(VERSION)/ $(TAGNAME) | gzip > autojump_v$(VERSION).tar.gz sha1sum autojump_v$(VERSION).tar.gz - -test: - @tests/runtests.py