Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions connect/models/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,12 +699,12 @@ def make_object(self, data):


class UsageStatsSchema(BaseSchema):
uploaded = fields.Str()
validated = fields.Str()
pending = fields.Str()
accepted = fields.Str()
closed = fields.Str()
invalid = fields.Str()
uploaded = fields.Int()
validated = fields.Int()
pending = fields.Int()
accepted = fields.Int()
closed = fields.Int()
invalid = fields.Int()

@post_load
def make_object(self, data):
Expand Down
5 changes: 4 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ flake8==3.7.5
pytest==4.6.8
pytest-cov==2.6.1
mock==2.0.0
-r sdk.txt
sphinx
sphinx_rtd_theme
sphinx-markdown-builder
-r sdk.txt