Run a Google App Engine on Travis-CI and test it with PhantomJS

放肆的年华 提交于 2019-12-10 18:14:22

问题


Is there a way to run a Google App Engine development appserver instance on Travis-CI, and then test that app with PhantomJS/CasperJS?

One would not necessarily expect this to be a tremendously challenging thing, but I would be grateful for any relevant document, thoughts and suggestions.


回答1:


This was discussed on Travis Github/issues, and in any case my solution has been to add this to .travis.yml:

before_script:
- wget https://googleappengine.googlecode.com/files/google_appengine_1.8.9.zip -nv
- unzip -q google_appengine_1.8.9.zip

I hope this helps.



来源:https://stackoverflow.com/questions/13114334/run-a-google-app-engine-on-travis-ci-and-test-it-with-phantomjs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!