Changeset e8ed711 in trunk


Ignore:
Timestamp:
2021-11-03T16:25:38Z (4 years ago)
Author:
Jean-Paul Calderone <exarkun@…>
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.
Message:

Merge remote-tracking branch 'origin/master' into 3833.container-format-abstraction

Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified integration/test_tor.py

    r39c4a2c re8ed711  
    3535if sys.platform.startswith('win'):
    3636    pytest.skip('Skipping Tor tests on Windows', allow_module_level=True)
     37
     38if PY2:
     39    pytest.skip('Skipping Tor tests on Python 2 because dependencies are hard to come by', allow_module_level=True)
    3740
    3841@pytest_twisted.inlineCallbacks
  • TabularUnified src/allmydata/test/common_system.py

    r39c4a2c re8ed711  
    673673        iv_dir = self.getdir("introducer")
    674674        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)
    676677            introducer_config = (
    677678                u"[node]\n"
    678679                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)
    680683            ).encode("utf-8")
    681684
Note: See TracChangeset for help on using the changeset viewer.