-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from andres-torres-marroquin/migrate_to_dropbo…
…x_8_0_0 Bump dropbox to 8.0.0, add coverage, bump version to 0.1.1
- Loading branch information
Showing
5 changed files
with
47 additions
and
5 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 |
---|---|---|
|
@@ -11,3 +11,6 @@ include/ | |
build/ | ||
.Python | ||
local_settings.py | ||
.coverage | ||
coverage.xml | ||
|
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,6 +1,7 @@ | ||
VERSION = (0, 0, 2) | ||
VERSION = (0, 1, 1) | ||
|
||
|
||
def get_version(): | ||
return '%s.%s.%s' % VERSION | ||
return '%s.%s.%s' % VERSION | ||
|
||
version = get_version() | ||
version = get_version() |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[run] | ||
branch = True | ||
source = .,../django_dropbox | ||
omit = | ||
*/migrations/* | ||
*/tests/* | ||
*/settings/* | ||
*/wsgi.py | ||
manage.py | ||
|
||
[report] | ||
# Regexes for lines to exclude from consideration | ||
exclude_lines = | ||
# Have to re-enable the standard pragma | ||
pragma: no cover | ||
# Don't complain about missing debug-only code: | ||
def __repr__ | ||
if self\.debug: | ||
if settings\.DEBUG | ||
raise AssertionError | ||
raise NotImplementedError | ||
# Don't complain if non-runnable code isn't run: | ||
if 0: | ||
if __name__ == .__main__.: | ||
def __iter__ | ||
def __len__ | ||
__metaclass__ | ||
def __init__ | ||
ignore_errors = True |
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,2 @@ | ||
dropbox>=7.3.1 | ||
dropbox>=8.0.0 | ||
requests>=2.18.0 |