Skip to content

Commit

Permalink
update test, add blinker dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Burke committed Dec 17, 2013
1 parent cb3c188 commit 8090cb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
nose>=1.1.2
mock>=0.8
nosexcover
blinker
3 changes: 2 additions & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,9 @@ def test_non_api_error_404_catchall(self):


def test_handle_error_signal(self):
# This test requires the blinker lib to run.
if not signals_available:
self.skipTest("Can't test signals without signal support")
raise unittest.skipTest("Can't test signals without signal support")
app = Flask(__name__)
api = flask_restful.Api(app)

Expand Down

0 comments on commit 8090cb8

Please sign in to comment.