Skip to content

Commit

Permalink
remove skip on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Jul 15, 2024
1 parent 000bcba commit 07037f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_oneway.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ class TestOneway(object):
oneway_thrift = thriftpy2.load("oneway.thrift")

def setup_class(self):
ctx = multiprocess.get_context("fork")
server = make_server(self.oneway_thrift.echo, Dispatcher(), '127.0.0.1', 6000)
self.p = ctx.Process(target=server.serve)
self.p = multiprocess.Process(target=server.serve)
self.p.start()
time.sleep(1) # Wait a second for server to start.

Expand Down

0 comments on commit 07037f8

Please sign in to comment.