运行 Windows 系统上的代码接收在完成时如快速入门中所示创建错误
Run codeception on Windows system creates an Error when done like shown in the Quickstart
运行 这个:C:\Projects\HelloWorld>php vendor\bin\codecept generate:cest acceptance createTodo
错误结果:
if [ -d /proc/cygdrive ]; then
case $(which php) in
$(readlink -n /proc/cygdrive)/*)
# We are in Cygwin using Windows php, so the path must be translated
dir=$(cygpath -m "$dir");
;;
esac
fi
"${dir}/codecept" "$@"
我刚刚在某些 git 评论部分的底部找到了答案,并希望使其更易于访问。
https://github.com/Codeception/Codeception/issues/3281
谢谢测试1git1
在 windows 上对 运行 的修复是 运行 .bat 文件执行所有命令并在开头删除“php”。
vendor\bin\codecept.bat generate:cest acceptance createTodo
运行 这个:C:\Projects\HelloWorld>php vendor\bin\codecept generate:cest acceptance createTodo
错误结果:
if [ -d /proc/cygdrive ]; then
case $(which php) in
$(readlink -n /proc/cygdrive)/*)
# We are in Cygwin using Windows php, so the path must be translated
dir=$(cygpath -m "$dir");
;;
esac
fi
"${dir}/codecept" "$@"
我刚刚在某些 git 评论部分的底部找到了答案,并希望使其更易于访问。 https://github.com/Codeception/Codeception/issues/3281 谢谢测试1git1
在 windows 上对 运行 的修复是 运行 .bat 文件执行所有命令并在开头删除“php”。
vendor\bin\codecept.bat generate:cest acceptance createTodo