mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
594effa279
* working on core schema generation * adapting main.py * getting tests to run * fix tests * disable pyright, fix mypy * moving to class-based model generation * working on validators * change how models are created * start fixing test_main.py * fixing mypy * SelfType * recursive models working, more tests fixed * fix tests on <3.10 * get docs build to pass * starting to cleanup types.py * starting works on custom types * working on using annotated-types * using annoated types for constraints * lots of cleanup, fixing network tests * network tests passing 🎉 * working on types * working on types and cleanup * fixing UUID type, restructing again * more types and newer pydantic-core * working on Iterable * more test_types tests * support newer pydantic-core, fixing more test_types.py * working through more test_types.py * test_types.py at last passing locally 🎉 * fixing more tests in test_types.py * fix datetime_parse tests and linting * get tests running again, rename to test_datetime.py * renaming internal modules * working through mypy errors * fixing mypy * refactoring _generate_schema.py * test_main.py passing * uprev deps * fix conftest and linting? * importing Annotated * ltining * import Annotated from typing_extensions * fixing 3.7 compatibility * fixing tests on 3.9 * fix linting * fixing SecretField and 3.9 tests * customising get_type_hints * ignore warnings on 3.11 * spliting repr out of utils * removing unused bits of _repr, fix tests for 3.7 * more cleanup, removing many type aliases * clean up repr * support namedtuples and typeddicts * test is_union * removing errors, uprev pydantic-core * fix tests on 3.8 * fixing private attributes and model_post_init * renaming and cleanup * remove unnecessary PydanticMetadata inheritance * fixing forward refs and mypy tests * fix signatures, change how xfail works * revert mypy tests to 3.7 syntax * correct model title * try to fix tests * fixing ClassVar forward refs * uprev pydantic-core, new error format * add "force" argument to model_rebuild * Apply suggestions from code review Suggestions from @tiangolo and @hramezani 🙏 Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com> Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com> * more suggestions from @tiangolo * extra -> json_schema_extra on Field Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com> Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
98 lines
2.0 KiB
Makefile
98 lines
2.0 KiB
Makefile
.DEFAULT_GOAL := all
|
|
sources = pydantic tests docs/build
|
|
|
|
.PHONY: install
|
|
install:
|
|
python -m pip install -U pip
|
|
pip install -r requirements/all.txt
|
|
pip install -e .
|
|
|
|
.PHONY: format
|
|
format:
|
|
isort $(sources)
|
|
black $(sources)
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
flake8 $(sources)
|
|
isort $(sources) --check-only --df
|
|
black $(sources) --check --diff
|
|
|
|
.PHONY: mypy
|
|
mypy:
|
|
mypy pydantic docs/build
|
|
|
|
.PHONY: pyupgrade
|
|
pyupgrade:
|
|
pyupgrade --py37-plus `find pydantic tests -name "*.py" -type f`
|
|
|
|
.PHONY: pyright
|
|
pyright:
|
|
cd tests/pyright && pyright
|
|
|
|
.PHONY: test
|
|
test:
|
|
coverage run -m pytest --durations=10
|
|
|
|
.PHONY: testcov
|
|
testcov: test
|
|
@echo "building coverage html"
|
|
@coverage html
|
|
|
|
.PHONY: testcov-compile
|
|
testcov-compile: build-trace test
|
|
@echo "building coverage html"
|
|
@coverage html
|
|
|
|
.PHONY: test-examples
|
|
test-examples:
|
|
@echo "running examples"
|
|
@find docs/examples -type f -name '*.py' | xargs -I'{}' sh -c 'python {} >/dev/null 2>&1 || (echo "{} failed")'
|
|
|
|
.PHONY: test-fastapi
|
|
test-fastapi:
|
|
git clone https://github.com/tiangolo/fastapi.git --single-branch
|
|
./tests/test_fastapi.sh
|
|
|
|
.PHONY: all
|
|
all: lint mypy testcov
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf `find . -name __pycache__`
|
|
rm -f `find . -type f -name '*.py[co]'`
|
|
rm -f `find . -type f -name '*~'`
|
|
rm -f `find . -type f -name '.*~'`
|
|
rm -rf .cache
|
|
rm -rf .pytest_cache
|
|
rm -rf .mypy_cache
|
|
rm -rf htmlcov
|
|
rm -rf *.egg-info
|
|
rm -f .coverage
|
|
rm -f .coverage.*
|
|
rm -rf build
|
|
rm -rf dist
|
|
rm -f pydantic/*.c pydantic/*.so
|
|
rm -rf site
|
|
rm -rf docs/_build
|
|
rm -rf docs/.changelog.md docs/.version.md docs/.tmp_schema_mappings.html
|
|
rm -rf fastapi/test.db
|
|
rm -rf coverage.xml
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
flake8 --max-line-length=80 docs/examples/
|
|
python docs/build/main.py
|
|
mkdocs build
|
|
|
|
.PHONY: docs-serve
|
|
docs-serve:
|
|
python docs/build/main.py
|
|
mkdocs serve
|
|
|
|
.PHONY: publish-docs
|
|
publish-docs:
|
|
zip -r site.zip site
|
|
@curl -H "Content-Type: application/zip" -H "Authorization: Bearer ${NETLIFY}" \
|
|
--data-binary "@site.zip" https://api.netlify.com/api/v1/sites/pydantic-docs.netlify.com/deploys
|