-
-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More intermediate refactoring, added forked module for thirdparty tests
Changed Jawn tests to not run under Java 11.
- Loading branch information
Showing
6 changed files
with
86 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package mill.integration | ||
package forked | ||
|
||
object AcyclicTests extends AcyclicTests(fork = true) | ||
object AmmoniteTests extends AmmoniteTests(fork = true) | ||
object BetterFilesTests extends BetterFilesTests(fork = true) | ||
object JawnTests extends JawnTests(fork = true) | ||
object UpickleTests extends UpickleTests(fork = true) | ||
object PlayJsonTests extends PlayJsonTests(fork = true) | ||
object CaffeineTests extends CaffeineTests(fork = true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
package mill.integration.local | ||
package mill.integration | ||
package local | ||
|
||
object AcyclicTests extends mill.integration.AcyclicTests(fork = false) | ||
object AmmoniteTests extends mill.integration.AmmoniteTests(fork = false) | ||
object BetterFilesTests extends mill.integration.BetterFilesTests(fork = false) | ||
object JawnTests extends mill.integration.JawnTests(fork = false) | ||
object UpickleTests extends mill.integration.UpickleTests(fork = false) | ||
object PlayJsonTests extends mill.integration.PlayJsonTests(fork = false) | ||
object CaffeineTests extends mill.integration.CaffeineTests(fork = false) | ||
object AcyclicTests extends AcyclicTests(fork = false) | ||
object AmmoniteTests extends AmmoniteTests(fork = false) | ||
object BetterFilesTests extends BetterFilesTests(fork = false) | ||
object JawnTests extends JawnTests(fork = false) | ||
object UpickleTests extends UpickleTests(fork = false) | ||
object PlayJsonTests extends PlayJsonTests(fork = false) | ||
object CaffeineTests extends CaffeineTests(fork = false) |