Changeset abb0379 in trunk
- Timestamp:
- 2022-10-03T16:32:28Z (3 years ago)
- 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)
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified integration/test_i2p.py ¶
r9f01d4f rabb0379 56 56 which("docker"), 57 57 ( 58 "docker", "run", "-p", "7656:7656", "purplei2p/i2pd ",58 "docker", "run", "-p", "7656:7656", "purplei2p/i2pd:release-2.43.0", 59 59 # Bad URL for reseeds, so it can't talk to other routers. 60 60 "--reseed.urls", "http://localhost:1/", … … 64 64 def cleanup(): 65 65 try: 66 proto.transport.signalProcess(" KILL")66 proto.transport.signalProcess("INT") 67 67 util.block_with_timeout(proto.exited, reactor) 68 68 except ProcessExitedAlready: -
TabularUnified setup.py ¶
r9f01d4f rabb0379 387 387 "test": [ 388 388 "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'", 389 392 # Pin a specific pyflakes so we don't have different folks 390 393 # disagreeing on what is or is not a lint issue. We can bump
Note: See TracChangeset
for help on using the changeset viewer.