Merge pull request #4213 from eed3si9n/wip/split-server-test

Split server unit test on its own
This commit is contained in:
eugene yokota 2018-06-18 10:16:41 -04:00 committed by GitHub
commit c966e01a29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 10 deletions

View File

@ -50,7 +50,7 @@ notifications:
# Undo _JAVA_OPTIONS environment variable
before_script:
- _JAVA_OPTIONS=
- unset _JAVA_OPTIONS
script:
# It doesn't need that much memory because compile and run are forked

View File

@ -726,20 +726,12 @@ lazy val docProjects: ScopeFilter = ScopeFilter(
)
lazy val safeUnitTests = taskKey[Unit]("Known working tests (for both 2.10 and 2.11)")
lazy val safeProjects: ScopeFilter = ScopeFilter(
inProjects(mainSettingsProj, mainProj, actionsProj, runProj, stdTaskProj),
inAnyProject -- inProjects(sbtRoot, sbtProj),
inConfigurations(Test)
)
lazy val otherUnitTests = taskKey[Unit]("Unit test other projects")
lazy val otherProjects: ScopeFilter = ScopeFilter(
inProjects(
testingProj,
testAgentProj,
taskProj,
scriptedSbtProj,
scriptedPluginProj,
commandProj,
mainSettingsProj,
mainProj,
sbtProj
),
inConfigurations(Test)