Questions tagged [continuous-testing]

The concept of running all relevant tests on any modification of the source code. Includes all platforms and frameworks.

48 questions
3
votes
4 answers

Levels of continuous integration

In a recent interview, I was asked about the level of Continuous Integration practiced in our company. When I started describing what we did, the interviewer interjected and asked me the level number - sounded something like CMM level to me. When I…
2
votes
1 answer

Aggregated Karate test Report and Continuous Testing

After running a test case with Karate, some html reports are published with surefire plugin. In particular, I've found that there is an html report for each feature file. This is inconvenient when tests are run from an automated pipeline, like in my…
2
votes
1 answer

Incremental run of testsuite

We have a large project that has several thousands of tests in the testsuite, and the full testsuite run takes very long time. I am looking for a tool that I can integrate in the Maven build that will run only those tests that might be affected…
2
votes
2 answers

What are good continuous testing tools for Eclipse today (2010)

The question is in the title. This is almost the same question, but it's dated, so I think one should not be considered a dup: Are there any good Continuous Testing plugins for Eclipse out right now?
Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
2
votes
5 answers

java continuous testing outside of IDE

I have a bunch of Java unit tests, and I'd like to integrate a continuous testing framework into my codebase. Ideally, I would like to write a Maven / Ant target or bash script which would start running tests whenever the files it's watching change.…
Dan
  • 7,155
  • 2
  • 29
  • 54
2
votes
1 answer

MsTest parallel execution on TeamCity

I have an excellent build server with a huge amount of RAM and processors. Also I have a project with a huge amount of MsTest tests (95% of which are simple unit tests). It is so disappointing to see these tests are executed one by one for 15…
SiberianGuy
  • 24,674
  • 56
  • 152
  • 266
1
vote
1 answer

How to set up Z3 solver on Travis-CI machine

I have a project using library Z3 solver, and want to apply Travis-CI for continuous testing. However, I could not set up z3 on the remote machine in Travis-CI. Here is further information about my project: Created from IDE Eclipse Mars Use JDK…
ducanhnguyen
  • 161
  • 1
  • 10
1
vote
1 answer

Tests with multiple scenarios and multiple parameters

I'm trying to write a taurus test in .yml that will include multiple scenarios (like ping host request, change hostname on machine, install java,..). Every scenario has a request that is an API call, with url, POST method and body. Problem 1: Every…
1
vote
1 answer

Display selenese-runner results in Jenkins

As I am implementing an automated way to GUI test our webapplication with selenium I ran into some issues. I am using selenese-runner to execute our Selenium test suites, created with Selenium IDE as a post build action in Jenkins. This works…
Mrvonwyl
  • 347
  • 2
  • 15
1
vote
1 answer

Jmeter : Number of active threads

I am using jmeter in elemetery freya (14.04) I have a jmeter test plan with view results tree I am trying to generate a csv file in view results tree including the number of active threads field. It appears to me that the detail is being entered…
Pavanan M S
  • 157
  • 1
  • 2
  • 13
1
vote
1 answer

when testing production environment continuously makes sense

Let's say I have a bunch of unit tests, integration tests, and e2e tests that cover my app. Does it make sense to have these continuously running against prod, e.g. every 10 mins? I'm thinking no, here's why: My tests are already ran after every…
user2827377
  • 1,381
  • 2
  • 16
  • 26
1
vote
0 answers

python testing server-deployed application

I've got a small application (https://github.com/tkoomzaaskz/cherry-api) and I would like to integrate it with travis. In fact, travis is probably not important here. My question is how can I configure a build/job to execute the following…
ducin
  • 25,621
  • 41
  • 157
  • 256
1
vote
1 answer

MightyMoose - is there a way to set this up with NSpec?

I am using NSpec for my BDD tests and would like to integrate MightyMoose into our project. Can this be done? I cannot find any instructions on how to configure this.
Pacificoder
  • 1,581
  • 4
  • 18
  • 32
0
votes
0 answers

How to install latest Jfrog artifactory android apk to android device

I want to get the latest artifactory from jfrog and install a particular build from that latest artifactory to an android device and run my UI tests on that build. I dont know how to proceed with that. Are there any jfrog rest api to handle that.
Sammar Ahmad
  • 236
  • 5
  • 16
0
votes
1 answer

Is there a way to run integration tests in Jenkins build concurrently in multiple nodes

Is there a way to run 100s of automated tests in Jenkins build across multiple slaves concurrently? My Jenkins setup has 300+ automated tests and has access to 6-7 nodes. So when I ran my Jenkins job, is there way to distribute the load of 300+…