DEV Community

Christian Vasquez
Christian Vasquez

Posted on

What testing tools/frameworks does the DEV team use? 🤔

If so, why?

Did you guys try different ones before deciding to stick to X or Y?

Latest comments (5)

Collapse
 
pekizg profile image
Petar Å lat

GitLab + Jenkins + Ansible;

Collapse
 
ben profile image
Ben Halpern

rspec/Capybara. Our front end is currently only tested through rspec feature tests but that should change soon.

Collapse
 
chrisvasqm profile image
Christian Vasquez • Edited

Any Continuous Integration tools like Jenkins/ CircleCI/TeamCity?

Collapse
 
ben profile image
Ben Halpern

Yep, CodeShip. I'm pretty happy with our flow. Lots of trust in the test suite so it's easy to push confidently. Still room for improvement, but we're in a better place than ever.

Thread Thread
 
ben profile image
Ben Halpern

Oh we also use CodeClimate to measure test coverage and do static analysis for quality. Both metrics play a role in our merging/deployment process.