Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,6 @@
path = community-build/community-projects/scodec-bits
url = https://github.com/dotty-staging/scodec-bits.git
branch = dotty-community-build
[submodule "community-build/community-projects/scala-parser-combinators"]
path = community-build/community-projects/scala-parser-combinators
url = https://github.com/dotty-staging/scala-parser-combinators.git
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,12 @@ object projects:
dependencies = List(scalatest, scalacheck, scalatestplusScalacheck, scodecBits)
)

lazy val scalaParserCombinators = SbtCommunityProject(
project = "scala-parser-combinators",
sbtTestCommand = "parserCombinators/test",
sbtUpdateCommand = "parserCombinators/update"
)

end projects

@Category(Array(classOf[TestCategory]))
Expand Down Expand Up @@ -384,6 +390,7 @@ class CommunityBuildTest:
@Test def munit = projects.munit.run()
@Test def scodecBits = projects.scodecBits.run()
@Test def scodec = projects.scodec.run()
@Test def scalaParserCombinators = projects.scalaParserCombinators.run()
end CommunityBuildTest

class TestCategory
Expand Down