python-dependency-injector/Makefile

78 lines
1.9 KiB
Makefile
Raw Normal View History

2016-11-01 08:49:44 +00:00
VERSION := $(shell python setup.py --version)
2016-11-02 20:58:30 +00:00
CYTHON_SRC := $(shell find src/dependency_injector -name '*.pyx')
2016-11-01 08:49:44 +00:00
CYTHON_DIRECTIVES = -Xlanguage_level=3
2016-11-01 08:49:44 +00:00
2016-11-02 15:21:40 +00:00
ifdef DEPENDENCY_INJECTOR_DEBUG_MODE
2016-11-02 17:28:11 +00:00
CYTHON_DIRECTIVES += -Xprofile=True
CYTHON_DIRECTIVES += -Xlinetrace=True
2016-11-01 08:49:44 +00:00
endif
2016-10-30 12:41:33 +00:00
2016-10-30 21:59:42 +00:00
clean:
# Clean sources
2016-11-02 20:58:30 +00:00
find src -name '*.py[cod]' -delete
find src -name '__pycache__' -delete
find src -name '*.c' -delete
2016-11-11 15:35:58 +00:00
find src -name '*.h' -delete
2016-11-02 20:58:30 +00:00
find src -name '*.so' -delete
find src -name '*.html' -delete
2016-10-30 21:59:42 +00:00
# Clean tests
find tests -name '*.py[co]' -delete
find tests -name '__pycache__' -delete
# Clean examples
find examples -name '*.py[co]' -delete
find examples -name '__pycache__' -delete
2016-11-01 08:49:44 +00:00
cythonize:
2016-10-31 09:30:57 +00:00
# Compile Cython to C
2016-11-01 08:49:44 +00:00
cython -a $(CYTHON_DIRECTIVES) $(CYTHON_SRC)
2016-10-31 09:30:57 +00:00
# Move all Cython html reports
mkdir -p reports/cython/
2016-11-02 20:58:30 +00:00
find src -name '*.html' -exec mv {} reports/cython/ \;
2016-10-31 09:30:57 +00:00
2016-11-01 08:49:44 +00:00
build: clean cythonize
2016-10-31 09:30:57 +00:00
# Compile C extensions
2016-11-02 15:21:40 +00:00
python setup.py build_ext --inplace
2016-10-31 09:30:57 +00:00
2020-06-17 01:39:11 +00:00
docs-live:
2020-06-14 21:35:25 +00:00
sphinx-autobuild docs docs/_build/html
2016-11-02 21:55:14 +00:00
install: uninstall clean cythonize
2016-11-02 22:56:30 +00:00
pip install -ve .
2016-11-02 20:58:30 +00:00
2016-11-02 21:17:50 +00:00
uninstall:
- pip uninstall -y -q dependency-injector 2> /dev/null
Pytest migration (#519) * Add pytest and pytest-asyncio to the requirements * Update aiohttp ext test * Update setup.cfg * Update tox.ini * Add pytest to the tox requirements * Update tox.ini * Move configuration to tox.ini * Add pytest configs * Rename pytest-py34-py35.ini -> pytest-py35.ini * Update config file paths * Update makefile * Migrate common tests to pytest * Migrate FastAPI and Flask wiring tests * Rename flask and fastapi wiring test files * Move wiring autoloader tests * Add pytest-asyncio to the tox.ini * Migrate wiring async injection tests * Migrate main wiring tests * Migrate wiring string module and package names tests * Migrate wiring config tests * Migrate misc wiring tests * Update tests structure * Migrate misc wiring tests * Refactor container.from_schema() API tests * Migrate container.from_schema() integration tests * Rename schema samples * Update sample imports * Migrate container tests * Refactor container tests * Migrate container self tests * Migrate container instance tests * Migrate container custom string attribute name tests * Migrate container async resource tests * Fix py2 container tests * Migrate container cls tests * Migrate container class custom string cls as atrribute name tests * Migrate ext.aiohttp tests * Migrate ext.flasks tests * Update ext package tests doc block * Migrate provider utils tests * Migrate Factory async mode tests * Migrate async tests * Rename common test module * Refactor asserts in provider tests * Migrate factory tests * Migrate selector provider tests * Migrate object provider tests * Migrate self provider tests * Migrate delegate provider tests * Migrate provider tests * Migrate dependency provider tests * Migrate dependencies container provider tests * Fix warnings * Migrate list provider tests * Migrate dict provider tests * Migrate callable tests * Migrate injection tests * Migrate container provider tests * Migrate coroutine providers * Migrate traversal tests * Migrate resource tests * Migrate configuration tests * Migrate provided instance provider tests * Update doc blocks and imports * Migrate singleton tests * Update changelog and cosmetic fixes
2021-10-18 20:19:03 +00:00
test:
2016-10-30 21:59:42 +00:00
# Unit tests with coverage report
coverage erase
Pytest migration (#519) * Add pytest and pytest-asyncio to the requirements * Update aiohttp ext test * Update setup.cfg * Update tox.ini * Add pytest to the tox requirements * Update tox.ini * Move configuration to tox.ini * Add pytest configs * Rename pytest-py34-py35.ini -> pytest-py35.ini * Update config file paths * Update makefile * Migrate common tests to pytest * Migrate FastAPI and Flask wiring tests * Rename flask and fastapi wiring test files * Move wiring autoloader tests * Add pytest-asyncio to the tox.ini * Migrate wiring async injection tests * Migrate main wiring tests * Migrate wiring string module and package names tests * Migrate wiring config tests * Migrate misc wiring tests * Update tests structure * Migrate misc wiring tests * Refactor container.from_schema() API tests * Migrate container.from_schema() integration tests * Rename schema samples * Update sample imports * Migrate container tests * Refactor container tests * Migrate container self tests * Migrate container instance tests * Migrate container custom string attribute name tests * Migrate container async resource tests * Fix py2 container tests * Migrate container cls tests * Migrate container class custom string cls as atrribute name tests * Migrate ext.aiohttp tests * Migrate ext.flasks tests * Update ext package tests doc block * Migrate provider utils tests * Migrate Factory async mode tests * Migrate async tests * Rename common test module * Refactor asserts in provider tests * Migrate factory tests * Migrate selector provider tests * Migrate object provider tests * Migrate self provider tests * Migrate delegate provider tests * Migrate provider tests * Migrate dependency provider tests * Migrate dependencies container provider tests * Fix warnings * Migrate list provider tests * Migrate dict provider tests * Migrate callable tests * Migrate injection tests * Migrate container provider tests * Migrate coroutine providers * Migrate traversal tests * Migrate resource tests * Migrate configuration tests * Migrate provided instance provider tests * Update doc blocks and imports * Migrate singleton tests * Update changelog and cosmetic fixes
2021-10-18 20:19:03 +00:00
coverage run --rcfile=./.coveragerc -m pytest -c tests/.configs/pytest.ini
2016-10-30 21:59:42 +00:00
coverage report --rcfile=./.coveragerc
coverage html --rcfile=./.coveragerc
2016-11-01 08:49:44 +00:00
check:
2020-06-25 22:01:15 +00:00
flake8 src/dependency_injector/
flake8 examples/
2016-11-02 21:55:14 +00:00
pydocstyle src/dependency_injector/
2016-10-30 21:59:42 +00:00
pydocstyle examples/
mypy tests/typing
test-publish: cythonize
# Create distributions
python setup.py sdist
# Upload distributions to PyPI
twine upload --repository testpypi dist/dependency-injector-$(VERSION)*
2020-07-02 03:20:28 +00:00
publish:
2017-06-08 22:45:12 +00:00
# Merge release to master branch
git checkout master
2017-06-08 22:53:14 +00:00
git merge --no-ff release/$(VERSION) -m "Merge branch 'release/$(VERSION)' into master"
2017-06-08 22:45:12 +00:00
git push origin master
2016-10-30 21:59:42 +00:00
# Create and upload tag
2016-10-30 12:41:33 +00:00
git tag -a $(VERSION) -m 'version $(VERSION)'
git push --tags