add travis and codecov

This commit is contained in:
collerek
2020-08-02 08:56:53 +02:00
parent db2a0b3ddb
commit c22de9684d
5 changed files with 42 additions and 1 deletions

View File

@ -22,6 +22,9 @@ MySQL, and SQLite. ORM is built with:
Because ORM is built on SQLAlchemy core, you can use Alembic to provide
database migrations.
The goal was to create a simple orm that can be used directly with FastApi that bases it's data validation on pydantic.
Initial work was inspired by [`encode/orm`][encode/orm]
**ORM is still under development: We recommend pinning any dependencies with `orm~=0.1`**
**Note**: Use `ipython` to try this from the console, since it supports `await`.
@ -175,4 +178,5 @@ All fields are required unless one of the following is set:
[sqlalchemy-core]: https://docs.sqlalchemy.org/en/latest/core/
[databases]: https://github.com/encode/databases
[pydantic]: https://pydantic-docs.helpmanual.io/
[pydantic]: https://pydantic-docs.helpmanual.io/
[encode/orm]: