From 288284aa9ca9257e34c0964b69d1573fa5d0ecee Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Fri, 5 Feb 2021 08:36:36 -0500 Subject: [PATCH] Make "make test" to be a default test command and run Python 3 tests --- Makefile | 2 +- docs/main/changelog.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c69694e9..b2669af0 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ test-py2: build coverage report --rcfile=./.coveragerc coverage html --rcfile=./.coveragerc -test-py3: build +test: build # Unit tests with coverage report coverage erase coverage run --rcfile=./.coveragerc -m unittest2 discover -s tests/unit/ -p test_*py3*.py diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 7c85cf41..e5faa794 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -10,6 +10,7 @@ follows `Semantic versioning`_ Development version ------------------- - Add tests for ``Selector`` provider. +- Update Makefile to make Python 3 tests to be a default test command: ``make test``. 4.17.0 ------