python setup.py sdist
Jenkins シェルで実行しています
Tox
は実行中であり、すべての依存関係をインストールしますが、py.test
コマンドにアクセスしているときに次のように言う場合:
py27 runtests: commands[0] | py.test --junit-xml=C:\my_folder\unit_test_results.xml
failed to create process.
私のini
ファイルは次のようになります。
[tox]
envlist = py27, docs
[testenv]
deps=pytest
commands=py.test --junit-xml={toxinidir}\unit_test_results.xml
[testenv:docs]
basepython=python
changedir=docs\source
deps=
sphinx
sphinx_epytext
commands=sphinx-build -W -b html -d {envtmpdir}\doctrees . {envtmpdir}\html
プロセスの作成に失敗する理由は何ですか?