@echo "Nothing to be done for 'all'"
.PHONY: release
-release: tests flake8 docs distr
+release: tests docs distr
.PHONY: distr
distr:
./mk-distr
-.PHONY: flake8
-flake8:
- flake8
-
.PHONY: docs
docs:
cd docs && exec ./rebuild
.PHONY: test
test:
- $(MAKE) -C tests
+ tox
.PHONY: tests
tests: test
Version 0.2.2 (2017-06-??)
--------------------------
+* Use tox instead of tests/Makefile.
+
* Test at Travis and AppVeyor with Postgres.
Version 0.2.1 (2017-05-01)
+++ /dev/null
-
-.PHONY: all
-all: nodb postgres sqlite clean
-
-.PHONY: nodb
-nodb:
- PYTHONPATH=.. python -m pytest
-
-.PHONY: postgres
-postgres:
- createdb test
- PYTHONPATH=.. python -m pytest -D postgres:///test
- dropdb test
-
-.PHONY: sqlite
-sqlite:
- PYTHONPATH=.. python -m pytest -D sqlite:///tmp/test.sqdb
- rm -f /tmp/test.sqdb
-
-.PHONY: clean
-clean:
- rm -f *.tmp