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
44
votes
4 answers

Continuous testing with IntelliJ Idea

I'm looking for an IntelliJ IDEA plugin that would run my tests each time I change my code. I looked for such a solution and I found: Infinitest, which works, but is inconvenient because I need to add the facet to each module, and it opens a new…
mik01aj
  • 11,928
  • 15
  • 76
  • 119
23
votes
3 answers

How to enable mighty moose (continuoustests) in visual studio 2013?

The question pretty much tells it all. Continoustests comes as a windows installer (http://continuoustests.com/download.html), so the trick described here doesn't work.
jeroenh
  • 26,362
  • 10
  • 73
  • 104
18
votes
4 answers

Is there a Java continuous testing plugin for Maven?

I'm looking for a plugin that would run in a console continuously to scan a Maven project's test sources directory, and when it detects a change kicks off a test cycle. Something analogous to mvn scala:cc or the Scala Build Tool, but for Java. Can…
Jakub Korab
  • 4,974
  • 2
  • 24
  • 34
13
votes
1 answer

Is it possible to set tests to continuously run on Android Studio?

I'd like to know if it is possible to do continuous testing on Android Studio. I've found the Infinitest tool for Eclipse/IntelliJ but couldn't find any tools for Android Studio. Since Android Studio is based on IntelliJ I thought that there could…
Danilo Prado
  • 2,260
  • 1
  • 13
  • 16
11
votes
4 answers

Karma for Visual Studio?

I'm a big fan of continuous testing products like Infinitest. Lately I've been doing more JavaScript development, and was looking for something similar for Visua Studio that will run my Jasmine tests immediately after saving a file. Mighty Moose…
8
votes
3 answers

Is it possible to run incremental/automated JUnit testing in Eclipse?

Eclipse support incremental compiling. If I save a source file then it will compile the modified files. Is it possible after such incremental compile also to run the JUnit tests of the same package and show the fail in the error view. Then I can see…
Horcrux7
  • 23,758
  • 21
  • 98
  • 156
8
votes
3 answers

ContinuousTest / Moose : Here Be Dragons and general overlay questions

Has anyone ever come across the Here Be Dragons warning in Mighty Moose / ContinuousTests? This was placed beside a private method, probably because it's private and thus not easily testable - you might need magic armor to get this tested. Anyway,…
Sebastian Edelmeier
  • 4,095
  • 3
  • 39
  • 60
6
votes
1 answer

How do I set up NCrunch to run nspec tests

I'm struggling to set up NCrunch to run my nspec tests automatically. On the ncrunch forums it says this functionality has not been implemented yet, but then MattFlo says he prefers using NCrunch, so I'm pretty sure it can be made to work. Help…
richardwhatever
  • 4,564
  • 5
  • 23
  • 26
5
votes
2 answers

CloudFormation templates: continuous testing for infrastructure as a code

On the project we use some of AWS services like AWS Lambda, EC2, AWS API Gateway, ElastiCache, etc. Also we have CloudFormation template which describes whole our infrastructure. As the project is developed we begin to use some new AWS services or…
5
votes
2 answers

Stopping Continues Testing recompilation stealing cursor in Visual Studios 2017 and Resharper

I have just started out on my journey to learn TDD with C# and to help me I have started using Reshaper 2017.1.3 Continues Testing tool to re-run all my tests that are affected by my modifications upon saving. I was hoping this would be a seamless…
user4476264
5
votes
0 answers

Integrating SBT continuous testing with IntelliJ

SBT supports continuous testing out of the box. How can I integrate that into IntelliJ, so that IntelliJ shows me the failed tests as they happen (similar to the wonderful NCrunch for .NET)?
SRobertJames
  • 8,210
  • 14
  • 60
  • 107
5
votes
0 answers

Automated/Continuous testing with MonoDevelop

By following the instructions about automating unit tests using Mighty moose for stand alone clients (MonoDevelop IDE), I understood it was possible. There is a section on How can I get Mighty Moose working natively on my mac? on their support…
Shaun
  • 199
  • 1
  • 10
4
votes
1 answer

Using Autotest in the Simplest Possible Way

I'm new to using Autotest to continuously run rspec specs. I'd like to simply use Autotest to work with two files: [filename].rb and [filename]_spec.rb, but when I run Autotest in the directory those files are in, it doesn't pick up changes. What…
Aeden
  • 195
  • 9
3
votes
1 answer

Parallelizing google cloudbuild steps without mangling the build logs

Following guidance here: https://cloud.google.com/cloud-build/docs/configuring-builds/configure-build-step-order We have split up our build into a multilayer docker image where layers are Install OS and third party deps Install our sources and…
3
votes
2 answers

Autotest, RSpec 2 and Ruby 1.9.2-p0 - no output at all

I have started the book Continuous Testing with Ruby (B2.0 printing), but am running into immediate problems. Per the first chapter, I have created an empty Gem using Jeweler 1.5.1 $ jeweler --rspec twits Running the specs manually with rake gives…
Mike Furtak
  • 1,105
  • 1
  • 11
  • 17
1
2 3 4