我正在为我的应用程序设置 Heroku CI,但出现以下错误:无法创建测试运行。无法初始化 CI 构建环境,请重试。
问题是我不知道为什么。我的 app.json 设置如下:
{
"environments": {
"test": {
"scripts": {
"test-setup": "python manage.py flush --noinput && python manage.py migrate --settings=app.settings.heroku",
"test": "python manage.py heroku --settings=app.settings.heroku"
},
"addons": [
"heroku-postgresql:in-dyno",
"heroku-redis:in-dyno"
],
"buildpacks": [
{
"url": "https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-python"
}
]
}
}
}
知道什么可能导致此错误吗?