2
votes
1answer
44 views

Run JUnit tests automatically in Jenkins without maven or ant

I am currently setting up a continuous integration tool with Jenkins. I would like to run JUnit tests everytime a build is made. My problem is that none of the projects that will be tested use maven ...
0
votes
0answers
30 views

How to know which files have changed with FSTrigger plugin in Jenkins

I am using the NUnit reports created by other CI system (not jenkins) for this I monitor a folder to see when the Nunit reports are created, the job triggered when the new files are created but I ...
0
votes
0answers
31 views

setting up jenkins for php (with jenkins-php.org)

I need a simple demo project to setup jenkins for PHP. I tried following jenkins-php.org but I get error after error and it is not making anything easier but just gets more and more frustrating! In ...
0
votes
0answers
32 views

Is it possible to get feedback in Maven when running unit tests written in Quest Code Tester and notify Jenkins in a proper way?

First I'm going to describe my current situation. I'm doing research about unit testing for PLSQL and Continuous Integration. I setup a test database with a package which contains procedures and ...
2
votes
1answer
196 views

How to configure a Jenkins job to run a unit test

After created a job for my Kohana-based project in Jenkins, I cannot figure out how to config the job in order to run unit tests. Basically I used the template from http://jenkins-php.org/, but Kohana ...
0
votes
1answer
204 views

boost unit tests with xUnit Plugin in Jenkins do not work

I am not a C programmer, but i have to run boost tests on my Jenkins. Now I have installed the xUnit plugin in Jenkins. I added a post-build action : "Publish xUnit test result report" Then, in this ...
1
vote
1answer
98 views

unit test in C# with jenkins

I know, that it is possible to get started unit tests in C# on a jenkins server. I am using GIT and my IDE is Eclipse. As i know, I have to do all the work with shell scripts? Is this true? I am a ...
0
votes
1answer
38 views

Best way to implement long running and dependency tests

We have integration tests. Most of them are simple but we have couple use cases when we should prepare data and checks them than wait for 5 hours. Prepared data should be processed by system daemons ...
0
votes
0answers
51 views

Jenkins stops getting my unit test output from xcodebuild

I've got Jenkins set up to build my application test target and execute tests in the iOS simulator like this answer says. When I execute the build in Jenkins, the iOS simulator launches and runs all ...
0
votes
0answers
143 views

Maven and Jasmine Surefire test reports in Jenkins

I'm trying gather test reports for tests in multiple Maven modules. Is there any way I can get Jenkins to gather Test reports per module in the same job? I have a Maven project with name "JavaScript ...
0
votes
1answer
117 views

Test Coverage in Jenkins for a Perl application

I just implemented an excellent example of test coverage in Perl described at Perl, Code Coverage Example But that required Module::Build , Now what if i have existing Perl Application which does NOT ...
0
votes
0answers
58 views

Jenkins creating TestCocoon report

I have a Jenkins build machine that runs unit tests which are Google Tests built using MSBuild, and contain a TestCocoon listener in the code to create Code Coverage reports. After Jenkins builds the ...
0
votes
1answer
82 views

Symfony 2.1 permissions, unit test, session

I am creating application based on Symfony 2.1. I write code locally, upload it on server and then run unit tests. When every test pass I run Jenkins job to check code style and etc. Recently I ...
2
votes
2answers
64 views

Generic Performance Test Framework?

We want to set up a framework to automate performance test executions of a Linux-based client/server application. The current workflow is: 1. Prepare the test environment, start the application. 2. ...
1
vote
0answers
76 views

Jenkins and Google Test (death test) using fork()

we use Jenkins and Google Test for our project. I wrote a GTest death test (EXPECT_EXIT) for our code. It forks the code which is tested and captures its return code. My tested code either terminates ...
1
vote
4answers
279 views

ANT Jenkins unit test - count failed tests

I would like to count the failed tests, and make a failure only once when all tests completed. These tests are run by Jenkins every night, and reporting the results if there are failures or errors. ...
1
vote
1answer
363 views

Jenkins cannot complete successful unit tests

I'm setting up my first Jenkins server to build and test an existing maven project, and jenkins is unable to complete the unit tests. When I run "mvn clean install" from the command line, all modules ...
1
vote
0answers
82 views

gcovr doesn't recognise conditionals from Xcode 4.5

I have an Xcode 4.5 project for iOS 6.0 and I am trying to set up test coverage for Jenkins with Cobertura. I have set up a test target and have configured both the main target and the test target ...
3
votes
1answer
162 views

Is there a way to run unit test for a WebGL webapp in a headless browser

Is there a way to run unit test for a WebGL (GLGE) webapp in a headless browser? I'd like to run the tests on a jenkins server, so the tests must run on a headless (phantom.js) brower. Anybody ...
1
vote
1answer
70 views

Sonar build stability plugin marks unstable builds as failed

I am using the cool Build Stability plugin for Sonar. I am importing Jenkins build results into Sonar. The Jenkins build I am tracking has only Unstable and Failed results, no Success yet (all tests ...
3
votes
1answer
448 views

How to have test job in Jenkins to mark build as Stable and NOT Unstable?

Currently I am building and testing my app in Jenkins. If a test fails in the job then the build is marked as Unstable. Is it possible to have the build be marked as Stable even though tests fail? The ...
1
vote
3answers
969 views

How to mark Jenkins builds as SUCCESS only on specific error exit values (other than 0)?

When I run an Execute shell build step to execute a script and that script returns 0, Jenkins flags the build as SUCCESS, otherwise it flags it as FAILURE which is the expected default behaviour as 0 ...
1
vote
3answers
394 views

Unit tests sometimes failing, sometimes passing

I have a mocha unit test suite. When I run them locally, everything works fine. When I run them on our Jenkins CI server, they sometimes fail, sometimes pass. I'm just not able to reproduce why they ...
9
votes
1answer
2k views

Running iOS Unit Tests from Command Line with Xcode 4.5

While running Unit Tests from command line (necessary for Jenkins) used to work until Xcode 4.4.1 with this hack, it does not seem to work anymore with Xcode 4.5. Now I get the following error ...
1
vote
1answer
1k views

Unit test results not showing in Sonar when building child projects in Jenkins

I have some maven projects configured in Jenkins, and I execute them from a parent project (which have them as <modules> in its pom.xml, the children have this project defined as <parent>). ...
0
votes
2answers
91 views

Collect running time of each JUnit test

Is there a way to easily collect running times of each unit test (for example with either surefire or some Jenkins plugin) so that I could for example list my Top 10 slowest unit tests?
0
votes
1answer
312 views

How to wait for server to come up and run unit test from Jenkins/Hudson

This is pretty simple question. I am posting this because I couldn't get any satisfying answer. First the background: I have Jenkins job that builds and deploys a web application on to a server. The ...
1
vote
1answer
59 views

JUnit: Execute by Method and/or by Class and/or by Project?

We usually write lots of tests and execute them frequently in Eclipse. Furthermore, we use Maven and later on Jenkins, which also run the tests. Every now and then we run into a situation where it ...
5
votes
2answers
874 views

CakePHP/Jenkins/Phing - Run all unit tests

I'm in the middle of my first ever stab at setting up Jenkins to build and run unit tests /code coverage with my CakePHP project. So far I have successfully got Jenkins fetching and building ...
2
votes
1answer
117 views

How to save PHPUnit tests as individual TAP results

I have a jenkins setup that runs some unit tests with PHPUnit. I would like each unit testcase to be saved as a separate tap result file. E.g. the results of testOneTest.php and testTwoTest.php will ...
0
votes
1answer
65 views

Where can I place a single executable for use within a Jenkins build?

I want to be able to execute Behat based test scenarios within Jenkins. Behat itself is a single executable (behat.phar) that runs with the use of PHP. Where can I place Behat so that it's within ...
5
votes
4answers
1k views

Python unittests in Jenkins?

How do you get Jenkins to execute python unittest cases? Is it possible to JUnit style XML output from the builtin unittest package?
0
votes
1answer
233 views

Incorrect timestamp on the target directory when the Jenkins build is triggered by Gerrit

Our unit tests failures are not being reported by Jenkins. Here's what we see in the build log: [JENKINS] Recording test results hudson.AbortException: Test reports were found but none of them are ...
3
votes
1answer
405 views

Printing to stdout and XML file using Python unittest-xml-reporting

I am using an extension of python's unittest, unittest-xml-reporting. It currently captures stdout and stores it in the xml output file. Awesome! But, I also want to echo it to the screen so I don't ...
2
votes
1answer
409 views

Problems with spring-test-mvc on Jenkins with Sonar

I have recently discovered Spring project for MVC testing: spring-test-mvc. It's a great tool, and I plan to use it more in the future. However I have noticed a problem with it on my Jenkins CI. The ...
2
votes
2answers
296 views

Jenkins: Automatic version checking of Maven-Release using Unit-Tests

I'm trying to configure a Jenkins-Job for releasing a Java-Project with the Maven-Release-Plugin. I want to ensure that the Major-Version, which I use to mark a Release as incompatible with an earlier ...
2
votes
3answers
316 views

Is there a standard way to test scripts/executables in Jenkins?

We have a project that contains a library of Python and Scala packages, as well as Bourne, Python and Perl executable scripts. Although the library has good test coverage, we don't have any tests on ...
1
vote
2answers
457 views

Why does my Unit Test work from Visual Studio 2010 and not with Jenkins?

I have a unit test that works with Microsoft Excel, using the interop assembly from Microsoft. When executing the unit test from within Visual Studio, then everything is fine and the test passes. When ...
3
votes
4answers
972 views

How would I produce JUnit test report for groovy tests, suitable for consumption by Jenkins/Hudson?

I've written several XMLUnit tests (that fit in to the JUnit framework) in groovy and can execute them easily on the command line as per the groovy doco but I don't quite understand what else I've got ...
0
votes
3answers
1k views

I can't get automatic unit testing to work with Jenkins and Sonar (and finally with Maven)

I don't know if I understand something wrong. I' trying to get automatic unit testing to work in my project. I made a Eclipse Plugin Project and converted it into a Maven Project. I made a JUnit test ...
0
votes
1answer
359 views

Only mark build as unstable in Jenkins if there are unclaimed test failures.

We're using Jenkins to run unit tests that are contributed to by 10 or so different scrum teams. A lot of the scrum teams prefer to check in failing tests before they implement the features that will ...
3
votes
1answer
2k views

Jenkins and JUnit annotations

I´m having some issues with my test suite and Jenkins. My TestSuite looks simply like this: @RunWith(Suite.class) @SuiteClasses( { CompanyRepositoryTest.class, StudentRepositoryTest.class }) public ...
3
votes
1answer
255 views

How to build and unit test with Ivy?

When unit testing with Ivy, is it best practice to put the test dependencies into the Ivy.xml file for the target binary you are building? Or should they be in a separate Ivy.xml file for the test ...
5
votes
1answer
4k views

Getting Spring Error “Bean named 'x' must be of type [y], but was actually of type [$Proxy]” in Jenkins

I have been debugging this for awhile now, and I'm hoping someone could shed some light here. I have a Maven project that is added into Jenkins, using JDK 1.6. I'm using AOP in this project to handle ...
3
votes
5answers
2k views

How to seperate unit testing and integration testing on a maven project

I have a maven project and lots of junit classes in it. I develop with Eclipse. I want to seperate functional test classes and integration testing classes. When I build the project in Eclipse then ...
4
votes
5answers
4k views

How can we run JavaScript jasmine tests from Jenkins (Hudson) without loading a JSP?

We have a rich web client. Our controllers and service facades are written in coffeescript (JavaScript) and jquery. In the past they would have been java. To run our JavaScript jasmine tests from ...
2
votes
2answers
1k views

How to only run unit tests once when running “maven clean install” and Sonar?

I had the following configuration for my Jenkins job: First clean and build the maven project, then run the unit tests and static analysis: clean install sonar:sonar The problem was that install and ...
19
votes
3answers
4k views

C++ Jenkins QA Stack / Tools

We are currently in the process of building a QA stack for you C++ development. We already have multiple Jenkins instances running and made very good experiences with the CI server in combination ...
8
votes
3answers
3k views

JavaScript unit testing and continuous integration 2011

Most of the existing questions about unit testing JavaScript code and integrating it into a continuous integration environment seem to date back to the dawn of time (or at least 2008 or 2009 :) ). ...
3
votes
2answers
541 views

Using Jenkins to run site up time and verification tests

I'm wondering if Jenkins could (and should) be used to run various checks that I need to perform a few times a day. For example: sites accessible are dev sites password protected are checkout ...

1 2