Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 980 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 980 Bytes

Build Status codecov.io

moztelemetry

Mozilla's Telemetry API for Scala

Using moztelemetry

In SBT:

resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies += "com.mozilla.telemetry" %% "moztelemetry" % "1.0-SNAPSHOT"

Testing

To run the tests you have to start a mock S3 service first with moto:

pip install moto
moto_server s3 -p 8001 &
AWS_ACCESS_KEY_ID=foo AWS_SECRET_ACCESS_KEY=foo sbt test

Publishing snapshots

Read this article for how to configure signing. Once that is done, all one needs to run is:

sbt publishSigned