0
私のテストファイルと同じディレクトリレベルでconftest.pyを追加しました。私conftest.pyの内容:pytestコマンドライン引数が失敗しました
import pytest
def pytest_addoption(parser):
parser.addoption("--l", action="store", help="Get license value")
@pytest.fixture
def lic(request):
return request.config.getoption("--l")
と、次は私のテストファイルデフ
def test(lic):
print "testing license : %s"%lic
assert 0
ですが、私はまだ、次のエラーを取得:応答は、--l
オプションが言うように
pytest .\source\test_latestLinuxAgent.py --l=test
pytest : usage: pytest [options] [file_or_dir] [file_or_dir] [...]
At line:1 char:1
+ pytest .\source\test_latestLinuxAgent.py --l=test
pytest: error: ambiguous option: --l=test could match --lf, --last-failed
ありがとうございました。 – user3482804