Skip to content

Commit 8340614

Browse files
authored
Merge pull request scala#9600 from lrytz/travis-slack-noforks
travis notifications on slack only for scala/scala
2 parents 03a0633 + 310ae6f commit 8340614

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ notifications:
170170
slack:
171171
rooms:
172172
- typesafe:WoewGgHil2FkdGzJyV3phAhj
173-
if: type = cron OR type = push
173+
if: (type = cron OR type = push) AND repo = scala/scala
174174
on_success: never
175175
on_failure: change
176176
webhooks: https://scala-ci.typesafe.com/benchq/webhooks/travis

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* What you see below is very much work-in-progress. The following features are implemented:
55
* - Compiling all classes for the compiler and library ("compile" in the respective subprojects)
6-
* - Running JUnit ("junit/test"), ScalaCheck ("scalacheck/test"), and partest ("test/it:test") tests
6+
* - Running JUnit ("junit/test"), ScalaCheck ("scalacheck/test"), and partest ("test/IntegrationTest/test") tests
77
* - Creating build/quick with all compiled classes and launcher scripts ("dist/mkQuick")
88
* - Creating build/pack with all JARs and launcher scripts ("dist/mkPack")
99
* - Building all scaladoc sets ("doc")
@@ -1206,7 +1206,7 @@ def generateServiceProviderResources(services: (String, String)*): Setting[_] =
12061206

12071207
// Add tab completion to partest
12081208
commands += Command("partest")(_ => PartestUtil.partestParser((ThisBuild / baseDirectory).value, (ThisBuild / baseDirectory).value / "test")) { (state, parsed) =>
1209-
("test/it:testOnly -- " + parsed) :: state
1209+
("test/IntegrationTest/testOnly -- " + parsed) :: state
12101210
}
12111211

12121212
// Watch the test files also so ~partest triggers on test case changes

0 commit comments

Comments
 (0)