0.01
No commit activity in last 3 years
No release in over 3 years
Provides an rspec reporter that produces teamcity parseable strings. See TC docs: https://confluence.jetbrains.com/display/TCD8/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-ReportingTests
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

< 4, >= 2.14.2, >= 2.99
 Project Readme

rspec-teamcity

TeamCity rspec reporter

TeamCity has a built in rspec reporter, but it only works in certain scenarios. I ran into a scenario where I needed to run spec on an EC2 machine and TeamCity needed to know the results, so I created this for situations like that.

Installation

Add to your Gemfile

gem 'rspec-teamcity', '~> 1.0.0'

Usage

rspec spec --require <absolute-path-to-source-code> --format Spec::Runner::Formatter::TeamcityFormatter
require 'rspec/teamcity'
RSpec.configure do |config|
  config.add_formatter Spec::Runner::Formatter::TeamcityFormatter
end