Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 3.13 KB

File metadata and controls

54 lines (40 loc) · 3.13 KB
layout post
title Codeception 1.0.7 Released.
date 2012-04-04 18:03:50 -0700

That was quite a long time after last version was released. This time we decided to skip version 1.0.6, just because 1.0.7 looks prettier.

With this release Codeception can be used in CI systems like Jenkins. It's very easy: you just append '--xml' option for running test and receive xml report in JUnit format stored in 'tests/_log' directory. Other popular formats like Json and TAP were added too. Here is a sample report.xml generated by Codeception test suite:

{% highlight xml %}

{% endhighlight %}

Currently this reports are not perfect as for different file formats and you may lack some important information. For this cases, please create issues on GitHub or in Q&A section.

Thanks to Nikita Groshin new module for Kohana Framework integration was added. Please, check it out for your Kohana projects and leave a feedback.

Bugfixes

Also there were some encoding issues, but they are solved easily if you make sure your code and site has a UTF-8 encoding.

Thanks again to all contributors and reporters.

Please update your version via PEAR:

{% highlight bash %} $ pear install codeception/Codeception {% endhighlight %}

or download updated Phar package.

Also you should update Mink, as it uses Zend Framework 2 beta 3 now for PHP browser. All Codeception dependencies can be updated with a single command.

{% highlight bash %} $ codecept install {% endhighlight %}