-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to sync with Protean 0.0.9 (#7)
* add the lookups and function to build the filters * add test cases for all the lookups * add test cases for q object * add support for Relation and Associations * change the test command to include flake8 * bump the version of protean * changes to travis and isort corrections * add correct distro for 3.7
- Loading branch information
1 parent
924feae
commit 38babd6
Showing
14 changed files
with
603 additions
and
108 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,11 +1,13 @@ | ||
language: python | ||
dist: xenial | ||
python: | ||
- '3.6' | ||
- '3.7' | ||
install: | ||
- python setup.py install | ||
- pip install -I -r requirements/test.txt | ||
script: | ||
- pytest --cov=protean_sqlalchemy --cov-config .coveragerc tests | ||
- pytest --cov=protean_sqlalchemy --cov-config .coveragerc --flake8 | ||
after_success: | ||
- pip install codecov | ||
- codecov |
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,4 +1,4 @@ | ||
protean==0.0.7 | ||
protean==0.0.9 | ||
click==7.0 | ||
sqlalchemy==1.2.14 | ||
-r requirements/dev.txt |
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ pytest==3.6.3 | |
pytest-cov==2.5.1 | ||
pluggy==0.6.0 | ||
pytest-mock==1.10.0 | ||
pytest-flake8==1.0.4 |
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 +1 @@ | ||
__version__ = '0.0.7' | ||
__version__ = '0.0.9' |
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
Oops, something went wrong.