-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Index type arg, update todo and tests.sh
- Loading branch information
1 parent
c6b44fd
commit e115ae9
Showing
4 changed files
with
6 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
* - Creating dbml schema in python | ||
* - pyparsing new var names (+possibly new features) | ||
* - enum type | ||
* - `_type` -> `type` | ||
* - expression class | ||
- schema.add and .delete to support multiple arguments (handle errors properly) | ||
* - 2.3.1 Multiline comment /* ... */ | ||
* - 2.4 Multiple Schemas | ||
* - validation on "add_index", "add_table" etc | ||
* - enum type in table definition with schema | ||
- table columns parameter | ||
- add coverage badge | ||
- add docstrings | ||
- new docs | ||
- comment class | ||
- add CI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
python3 -m doctest README.md &&\ | ||
python3 -m doctest docs/classes.md &&\ | ||
python3 -m doctest docs/upgrading.md &&\ | ||
python3 -m doctest docs/creating_schema.md &&\ | ||
python3 -m unittest discover &&\ | ||
mypy pydbml --ignore-missing-imports |