1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00

Merge pull request #237 from mineo/no-more-tests

Remove further mentions of tests
This commit is contained in:
William Ting 2013-11-26 08:24:44 -08:00
commit 4d70c24b16
3 changed files with 2 additions and 14 deletions

View File

@ -1,7 +1,7 @@
VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump) VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump)
TAGNAME = release-v$(VERSION) TAGNAME = release-v$(VERSION)
.PHONY: docs install uninstall tar test .PHONY: docs install uninstall tar
install: install:
install.sh 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 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 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 # Check for tag existence
# git describe release-$(VERSION) 2>&1 >/dev/null || exit 1 # git describe release-$(VERSION) 2>&1 >/dev/null || exit 1
@ -34,6 +34,3 @@ tar:
# Create tagged archive # Create tagged archive
git archive --format=tar --prefix autojump_v$(VERSION)/ $(TAGNAME) | gzip > autojump_v$(VERSION).tar.gz git archive --format=tar --prefix autojump_v$(VERSION)/ $(TAGNAME) | gzip > autojump_v$(VERSION).tar.gz
sha1sum autojump_v$(VERSION).tar.gz sha1sum autojump_v$(VERSION).tar.gz
test:
@tests/runtests.py

View File

@ -115,11 +115,6 @@ with the command:
make docs 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 OPTIONS
------- -------

View File

@ -7,7 +7,3 @@ Documentation is in various files under `./docs/`. Build documentation with the
command: command:
make docs make docs
Unit tests are available in `./tests/`. Run unit tests with the command:
make test