pytest: Remove test_lightningd and all the legacy testing framework

This commit is contained in:
Christian Decker
2018-08-04 12:35:03 +02:00
committed by Rusty Russell
parent d3731b08b1
commit ae99e493b8
4 changed files with 9 additions and 286 deletions

View File

@@ -203,9 +203,9 @@ There are three kinds of tests:
* **blackbox tests** - These test setup a mini-regtest environment and test
lightningd as a whole. They can be run individually:
`PYTHONPATH=contrib/pylightning python3 tests/test_lightningd.py -f`.
`PYTHONPATH=contrib/pylightning py.test -v tests/`.
You can also append `LightningDTests.TESTNAME` to run a single test.
You can also append `-k TESTNAME` to run a single test.
Our Travis CI instance (see `.travis.yml`) runs all these for each
pull request.