Atlassian Bamboo with Django & Python - Possible?

后端 未结 4 1270
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 03:33

At my company, we currently use Atlassian Bamboo for our continuous integration tool. We currently use Java for all of our projects, so it works great.

However, we are

4条回答
  •  不要未来只要你来
    2021-01-30 04:05

    Bamboo essentially just runs a shell script, so this could just as easily be:

    ./manage.py test
    

    as it typically is:

    mvn clean install
    

    or:

    ant compile
    

    You may have to massage to output of the Django test runner into traditional JUnit XML output, so that Bamboo can give you pretty graphs on how many tests passed. Look at this post about using xmlrunner.py to get Python working with Hudson. Also take a look at NoseXUnit.

提交回复
热议问题