Skip to content

Commit

Permalink
tests: Disable "inactive flow" on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
dzen committed Sep 8, 2014
1 parent 66bc2f2 commit 544cdba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aioamqp/tests/test_channel.py
Expand Up @@ -3,6 +3,7 @@
"""

import asyncio
import os
import unittest

from . import testcase
Expand Down Expand Up @@ -49,6 +50,7 @@ def test_channel_active_flow(self):
self.assertTrue(result['active'])

@testing.coroutine
@unittest.skipIf(os.environ.get('TRAVIS'), "Inactive flow not implemented on travis")
def test_channel_inactive_flow(self):
channel = yield from self.amqp.channel()
result = yield from channel.flow(active=False)
Expand All @@ -63,6 +65,7 @@ def test_channel_active_flow_twice(self):
result = yield from channel.flow(active=True)

@testing.coroutine
@unittest.skipIf(os.environ.get('TRAVIS'), "Inactive flow not implemented on travis")
def test_channel_active_inactive_flow(self):
channel = yield from self.amqp.channel()
result = yield from channel.flow(active=True)
Expand Down

0 comments on commit 544cdba

Please sign in to comment.