Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkhettry/sbt-tap
Sbt plugin to generate tap output for tests
https://github.com/mkhettry/sbt-tap
Last synced: 3 months ago
JSON representation
Sbt plugin to generate tap output for tests
- Host: GitHub
- URL: https://github.com/mkhettry/sbt-tap
- Owner: mkhettry
- Created: 2012-04-22T22:35:25.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-11-14T01:34:44.000Z (over 11 years ago)
- Last Synced: 2024-08-07T23:47:51.259Z (7 months ago)
- Language: Scala
- Size: 95.7 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Provides reporting of test success and failure for tests run by
[simple build tool](https://github.com/harrah/xsbt)
in [TAP](http://en.wikipedia.org/wiki/Test_Anything_Protocol) formatAll the test results will be generated in one file: test-results/test.tap
To use
1. Add this plugin to your sbt project. Create project/project/Plugins.scala that looks like this:
import sbt._
// sets up other project dependencies when building our root project
object Plugins extends Build {
lazy val root = Project("root", file(".")) dependsOn(tapListener)
lazy val tapListener = RootProject(uri("git://github.com/mkhettry/sbt-tap.git"))
}2. In your build.sbt, add the SbtTapListener to the sequence of Test Listeners.
testListeners += SbtTapReporting.tapListener