运行 nosetest 命令时 tox 抛出错误

tox throws and error when running nosetest command

我创建了这个 tox.ini 文件:

[tox]
envlist = py37

[testenv]
commands = /bin/sh nosetests config_test.test_config_sdk:test_bucket_existing

它抛出这个错误:

$ tox
GLOB sdist-make: /Users/me/git/config-test/setup.py
py37 create: /Users/me/git/config-test/.tox/py37
py37 inst: /Users/me/git/config-test/.tox/.tmp/package/1/sdk-config-1.0.0.zip
py37 installed: sdk-config==1.0.0,config-test==1.0.0
py37 run-test-pre: PYTHONHASHSEED='2567467531'
py37 runtests: commands[0] | /bin/sh nosetests config_test.test_config_sdk:test_bucket_existing
/Users/me/git/config-test/venv/bin/nosetests: line 3: import: command not found
/Users/me/git/config-test/venv/bin/nosetests: line 4: import: command not found
from: can't read /var/mail/nose
/Users/me/git/config-test/venv/bin/nosetests: nosetests: line 9: syntax error near unexpected token `('
/Users/me/git/config-test/venv/bin/nosetests: nosetests: line 9: `    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])'
ERROR: InvocationError for command '/bin/sh nosetests config_test.test_config_sdk:test_bucket_existing' (exited with code 2)
__________________________________________________________________________ summary ___________________________________________________________________________
ERROR:   py37: commands failed

nosetests config_test.test_config_sdk:test_bucket_existing 当我 运行 它在我的终端时工作。

我是不是做错了什么,或者这个命令在 tox 中是不可能的?

这是您为 tox 注册到 运行 的命令:

/bin/sh nosetests config_test.test_config_sdk:test_bucket_existing

这里,nosetests作为shell脚本被调用;但这是误导。
nosetests 是您 PATH 中的可执行 python 脚本,应直接执行。

正在将命令注册为:

nosetests config_test.test_config_sdk:test_bucket_existing

解决错误。