From: Yen Chi Hsuan Date: Sun, 8 May 2016 07:16:32 +0000 (+0800) Subject: [test/test_socks] Use a different port range X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c2876afafef392220cdb2baebace1d6d533f8d63;p=youtube-dl [test/test_socks] Use a different port range Seems on Travis CI, ports in the original range are often used. --- diff --git a/test/test_socks.py b/test/test_socks.py index dc9b8d276..d07003ceb 100644 --- a/test/test_socks.py +++ b/test/test_socks.py @@ -78,7 +78,7 @@ class TestMultipleSocks(unittest.TestCase): class TestSocks(unittest.TestCase): def setUp(self): - self.port = random.randint(49152, 65535) + self.port = random.randint(20000, 30000) self.server_process = subprocess.Popen([ 'srelay', '-f', '-i', '127.0.0.1:%d' % self.port], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)