tReplace deprecated py.test syntax with pytest - electrum-personal-server - Maximally lightweight electrum server for a single user | |
git clone https://git.parazyd.org/electrum-personal-server | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit 9f795b998d245eac8e94b0c567ba2b8938acec40 | |
parent e2420a5342a787b5a476874748983905cbdd9eca | |
Author: chris-belcher | |
Date: Mon, 15 Apr 2019 17:53:29 +0100 Replace deprecated py.test syntax with pytest Diffstat: M README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- | |
diff --git a/README.md b/README.md | |
t@@ -194,11 +194,11 @@ pytest is used for automated testing. On Debian-like systems install with Run the tests with: - $ PYTHONPATH=.:$PYTHONPATH py.test-3 + $ PYTHONPATH=.:$PYTHONPATH pytest Create the coverage report with: - $ PYTHONPATH=.:$PYTHONPATH py.test-3 --cov-report=html --cov + $ PYTHONPATH=.:$PYTHONPATH pytest --cov-report=html --cov $ open htmlcov/index.html If you have installed Electrum Personal Server with pip, there is no |