Mercurial > dropbear
view test/conftest.py @ 1837:df7bfd2f7d45
Add "make test" target to run pytest
This will create a virtualenv if required.
There is a bit of churn here reverting to autoconf 2.59 in generated
config.h.in and configure
author | Matt Johnston <matt@codeconstruct.com.au> |
---|---|
date | Mon, 18 Oct 2021 14:24:32 +0800 |
parents | 06c7ddbb9dd6 |
children | 43ebe0028187 |
line wrap: on
line source
def pytest_addoption(parser): parser.addoption("--port", type=str, help="default is 2244 local, 22 remote") parser.addoption("--dbclient", type=str, default="../dbclient") parser.addoption("--dropbear", type=str, default="../dropbear") parser.addoption("--hostkey", type=str, help="required unless --remote") parser.addoption("--remote", type=str, help="remote host") parser.addoption("--user", type=str, help="optional username") def pytest_configure(config): opt = config.option if not opt.hostkey and not opt.remote: raise Exception("--hostkey must be given") if not opt.port: if opt.remote: opt.port = "22" else: opt.port = "2244"