Skip to content

Commit

Permalink
Merge pull request #6 from clearcare/bump-schematics
Browse files Browse the repository at this point in the history
Bump schematics version
  • Loading branch information
brianz committed Apr 29, 2016
2 parents 2b4f975 + 48abda8 commit 8ede394
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests>=2.4.3
schematics==1.0.3
schematics==1.1.1
bunch==1.0.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
setup(
name='servant',
packages=find_packages(exclude=['test', 'examples', 'examples.*']),
version = '0.1.1',
version = '0.1.2',
description = 'A library for building services',
author='Brian Zambrano',
author_email='[email protected]',
url='https://github.com/clearcare/servant',
install_requires=[
'requests>=2.4.3',
'schematics==1.0.3',
'schematics==1.1.1',
'bunch==1.0.1',
],
tests_require=[
Expand Down
2 changes: 1 addition & 1 deletion tests/test_basic_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_test_client_values(test_client):
def test_test_client_errors(test_client):
response = test_client.say_name(age='abc')
assert response.is_error()
assert response.field_errors.age[0].error == "Value 'abc' is not int"
assert "Value 'abc' is not int" in response.field_errors.age[0].error
assert not response.errors


Expand Down

0 comments on commit 8ede394

Please sign in to comment.