mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
2e940adb50
* Add basic setup * Add more tests for factory * Add mypy checks to CI * Add mypy checks to makefile command * Add typing for the factories * Add stub for Callable providers * Add typing module and object provider stubs * Fix typing test issue * Remove typing module * Add Delegate stub * Add stub for Dependency provider * Add stub for ExternalDependency * Add stubs for providers module functions * Add stubs for the DependenciesContainer provider * Add stub for the CallableDelegate provider * Add stubs for Coroutine providers * Add stubs for the configuration options * Add stub for the FactoryDelegate * Add stub for the FactoryAggregate provider * Add singleton stubs * Add stubs for singletons * Add stub for the List provider * Add stub for the Container provider * Add stub for the Selector provider * Add stubs for the dynamic container * Add stub for the declarative container * Add stubs for the extensions * Add types module for explicit provider typing * Set absolute import mode for the providers module and add types module test * Skip typing test for Python 3.5 * Remove coroutine test from py35 * Fix py35 tests * Add \n to the tox.ini
85 lines
2.2 KiB
Makefile
85 lines
2.2 KiB
Makefile
VERSION := $(shell python setup.py --version)
|
|
|
|
CYTHON_SRC := $(shell find src/dependency_injector -name '*.pyx')
|
|
|
|
CYTHON_DIRECTIVES = -Xlanguage_level=2
|
|
|
|
ifdef DEPENDENCY_INJECTOR_DEBUG_MODE
|
|
CYTHON_DIRECTIVES += -Xprofile=True
|
|
CYTHON_DIRECTIVES += -Xlinetrace=True
|
|
endif
|
|
|
|
|
|
clean:
|
|
# Clean sources
|
|
find src -name '*.py[cod]' -delete
|
|
find src -name '__pycache__' -delete
|
|
find src -name '*.c' -delete
|
|
find src -name '*.h' -delete
|
|
find src -name '*.so' -delete
|
|
find src -name '*.html' -delete
|
|
# 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
|
|
|
|
cythonize:
|
|
# Compile Cython to C
|
|
cython -a $(CYTHON_DIRECTIVES) $(CYTHON_SRC)
|
|
# Move all Cython html reports
|
|
mkdir -p reports/cython/
|
|
find src -name '*.html' -exec mv {} reports/cython/ \;
|
|
|
|
build: clean cythonize
|
|
# Compile C extensions
|
|
python setup.py build_ext --inplace
|
|
|
|
docs-live:
|
|
sphinx-autobuild docs docs/_build/html
|
|
|
|
install: uninstall clean cythonize
|
|
pip install -ve .
|
|
|
|
uninstall:
|
|
- pip uninstall -y -q dependency-injector 2> /dev/null
|
|
|
|
test-py2: build
|
|
# Unit tests with coverage report
|
|
coverage erase
|
|
coverage run --rcfile=./.coveragerc -m unittest2 discover -s tests/unit/ -p test_*_py2_py3.py
|
|
coverage report --rcfile=./.coveragerc
|
|
coverage html --rcfile=./.coveragerc
|
|
|
|
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 report --rcfile=./.coveragerc
|
|
coverage html --rcfile=./.coveragerc
|
|
|
|
check:
|
|
flake8 src/dependency_injector/
|
|
flake8 examples/
|
|
|
|
pydocstyle src/dependency_injector/
|
|
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)*
|
|
|
|
publish:
|
|
# Merge release to master branch
|
|
git checkout master
|
|
git merge --no-ff release/$(VERSION) -m "Merge branch 'release/$(VERSION)' into master"
|
|
git push origin master
|
|
# Create and upload tag
|
|
git tag -a $(VERSION) -m 'version $(VERSION)'
|
|
git push --tags
|