Remove all the import *, fix imports from messages and make the layout
consistent across tests.
This will later allow for more checks using flake8.
There is no functional change.
Details
Details
- Reviewers
deadalnix - Group Reviewers
Restricted Project - Commits
- rSTAGING096c2d9abab0: Refactor the imports in abc-* tests
rABC096c2d9abab0: Refactor the imports in abc-* tests
./test/functional/test_runner.py abc-*
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Branch
- refactor_imports_abc
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 5053 Build 8169: Bitcoin ABC Buildbot (legacy) Build 8168: arc lint + arc unit
Event Timeline
test/functional/abc-mempool-accept-txn.py | ||
---|---|---|
41 | This is really bad. Highly verbose and will create a ton of error for no benefit. What's the upside here ? Having to list every opcode than one uses do not seems to add a lot of value to me. |
test/functional/abc-mempool-accept-txn.py | ||
---|---|---|
41 | This will allow for detection of undefined symbols with flake8. These detections are made impossible when importing all with a star. |