ethereum / pytest-ethereum

MIT License
19 stars 12 forks source link

Plugins no longer automatically available #28

Open njgheorghita opened 5 years ago

njgheorghita commented 5 years ago

What was wrong?

Recently (since devcon), I've been unable to use pte plugins without including this line in my test files.

pytest_plugins = ["pytest_ethereum.plugins"]

The plugins should be automatically registered via this line in setup.py, but that no longer seems to do the trick.

entry_points={"pytest11": ["pytest_ethereum = pytest_ethereum.plugins"]},