Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
use minitest instead of utest
Browse files Browse the repository at this point in the history
  • Loading branch information
fomkin committed Mar 13, 2019
1 parent b1ef3d8 commit e261e44
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 449 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -47,12 +47,12 @@ lazy val derivation = project
.settings(Project.inConfig(Test)(sbtprotoc.ProtocPlugin.protobufConfigSettings):_*)
.settings(
name := "zhukov-derivation",
testFrameworks += new TestFramework("utest.runner.Framework"),
testFrameworks += new TestFramework("minitest.runner.Framework"),
PB.targets in Test := Seq(scalapb.gen() -> (sourceManaged in Test).value),
PB.targets in Compile := Nil,
PB.protoSources in Test := Seq(file("derivation/src/test/protobuf")),
libraryDependencies := Seq(
scalaPb % Test, utest, // testing
scalaPb % Test, minitest, // testing
macroCompat, macroParadise, scalaCompiler(scalaVersion.value) // macros
)
)
Expand Down

0 comments on commit e261e44

Please sign in to comment.