From ef1839c522aa6eed8dee8f4743ec6d117304e26a Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Thu, 6 Aug 2020 15:57:46 -0400 Subject: [PATCH] Fix ``Makefile`` to run ``aiohttp`` integration tests on Python 3.5+ --- Makefile | 2 +- docs/main/changelog.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c514be9..c309d62c 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ test-py2: build test-py3: build # Unit tests with coverage report coverage erase - coverage run --rcfile=./.coveragerc -m unittest2 discover -s tests/unit/ -p test_*py3.py + coverage run --rcfile=./.coveragerc -m unittest2 discover -s tests/unit/ -p test_*py3*.py coverage report --rcfile=./.coveragerc coverage html --rcfile=./.coveragerc diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index d298a399..c44ef5c1 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -11,6 +11,7 @@ Development version ------------------- - Add ``asyncio`` + ``Dependency Injector`` example ``monitoring-daemon-asyncio``. - Fix a typo in the docblock of the ``Configuration`` provider. +- Fix ``Makefile`` to run ``aiohttp`` integration tests on Python 3.5+. 3.27.0 ------