Changeset abb0379 in trunk


Ignore:
Timestamp:
2022-10-03T16:32:28Z (3 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
37589e3, f56b434
Parents:
9f01d4f (diff), 795ec0b (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.
git-author:
Itamar Turner-Trauring <itamar@…> (2022-10-03 16:32:28)
git-committer:
GitHub <noreply@…> (2022-10-03 16:32:28)
Message:

Merge pull request #1223 from tahoe-lafs/3928-i2p

Fix i2p integration tests

Fixes ticket:3928

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified integration/test_i2p.py

    r9f01d4f rabb0379  
    5656        which("docker"),
    5757        (
    58             "docker", "run", "-p", "7656:7656", "purplei2p/i2pd",
     58            "docker", "run", "-p", "7656:7656", "purplei2p/i2pd:release-2.43.0",
    5959            # Bad URL for reseeds, so it can't talk to other routers.
    6060            "--reseed.urls", "http://localhost:1/",
     
    6464    def cleanup():
    6565        try:
    66             proto.transport.signalProcess("KILL")
     66            proto.transport.signalProcess("INT")
    6767            util.block_with_timeout(proto.exited, reactor)
    6868        except ProcessExitedAlready:
  • TabularUnified setup.py

    r9f01d4f rabb0379  
    387387          "test": [
    388388              "flake8",
     389              # On Python 3.7, importlib_metadata v5 breaks flake8.
     390              # https://github.com/python/importlib_metadata/issues/407
     391              "importlib_metadata<5; python_version < '3.8'",
    389392              # Pin a specific pyflakes so we don't have different folks
    390393              # disagreeing on what is or is not a lint issue.  We can bump
Note: See TracChangeset for help on using the changeset viewer.