Changeset e8ed711 in trunk
- Timestamp:
- 2021-11-03T16:25:38Z (4 years ago)
- Branches:
- master
- Children:
- 8fbbc91
- Parents:
- 39c4a2c (diff), 5bfe6d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified integration/test_tor.py ¶
r39c4a2c re8ed711 35 35 if sys.platform.startswith('win'): 36 36 pytest.skip('Skipping Tor tests on Windows', allow_module_level=True) 37 38 if PY2: 39 pytest.skip('Skipping Tor tests on Python 2 because dependencies are hard to come by', allow_module_level=True) 37 40 38 41 @pytest_twisted.inlineCallbacks -
TabularUnified src/allmydata/test/common_system.py ¶
r39c4a2c re8ed711 673 673 iv_dir = self.getdir("introducer") 674 674 if not os.path.isdir(iv_dir): 675 _, port_endpoint = self.port_assigner.assign(reactor) 675 _, web_port_endpoint = self.port_assigner.assign(reactor) 676 main_location_hint, main_port_endpoint = self.port_assigner.assign(reactor) 676 677 introducer_config = ( 677 678 u"[node]\n" 678 679 u"nickname = introducer \N{BLACK SMILING FACE}\n" + 679 u"web.port = {}\n".format(port_endpoint) 680 u"web.port = {}\n".format(web_port_endpoint) + 681 u"tub.port = {}\n".format(main_port_endpoint) + 682 u"tub.location = {}\n".format(main_location_hint) 680 683 ).encode("utf-8") 681 684
Note: See TracChangeset
for help on using the changeset viewer.