Fix `Makefile to run aiohttp` integration tests on Python 3.5+

This commit is contained in:
Roman Mogylatov 2020-08-06 15:57:46 -04:00
parent 16c6d7c319
commit ef1839c522
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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
------