Skip to content

Commit

Permalink
Merge pull request #1894 from minrk/rm-proxy-steerable
Browse files Browse the repository at this point in the history
libzmq 4.3.5 removed proxy_steerable for license reasons
  • Loading branch information
minrk authored Aug 10, 2023
2 parents 2ac7b7b + 81bfbe6 commit 9bee18a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions zmq/tests/test_proxy_steerable.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@


class TestProxySteerable(BaseZMQTestCase):
def setUp(self):
if zmq.zmq_version_info() >= (4, 3, 5):
raise SkipTest("Steerable Proxies removed in libzmq 4.3.5")
super().setUp()

def test_proxy_steerable(self):
if zmq.zmq_version_info() < (4, 1):
raise SkipTest("Steerable Proxies only in libzmq >= 4.1")
Expand Down

0 comments on commit 9bee18a

Please sign in to comment.