]> Dogcows Code - chaz/sbt-tap/blob - readme.md
fix project name
[chaz/sbt-tap] / readme.md
1 Provides reporting of test success and failure for tests run by
2 [simple build tool](https://github.com/harrah/xsbt)
3 in [TAP](http://en.wikipedia.org/wiki/Test_Anything_Protocol) format
4
5 All the test results will be generated in one file: test-results/test.tap
6
7 To use
8
9 1. Add this plugin to your sbt project. Create project/project/Plugins.scala that looks like this:
10
11 import sbt._
12 // sets up other project dependencies when building our root project
13 object Plugins extends Build {
14 lazy val root = Project("root", file(".")) dependsOn(tapListener)
15 lazy val tapListener = RootProject(uri("git://github.com/mkhettry/sbt-tap.git"))
16 }
17
18 2. In your build.sbt, add the SbtTapListener to the sequence of Test Listeners.
19
20 testListeners += SbtTapReporting.tapListener
21
This page took 0.029333 seconds and 4 git commands to generate.