Skip to content

Commit

Permalink
Group test scope modules in testing dir (corda#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
andr3ej authored Sep 5, 2017
1 parent 6a7f6a8 commit 579abda
Show file tree
Hide file tree
Showing 38 changed files with 13 additions and 17 deletions.
22 changes: 6 additions & 16 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ from the previous milestone release.

UNRELEASED
----------
* About half of the code in test-utils has been moved to a new module ``node-driver``,
and the test scope modules are now located in a ``testing`` directory.

* Contract Upgrades: deprecated RPC authorisation / deauthorisation API calls in favour of equivalent flows in ContractUpgradeFlow.
Implemented contract upgrade persistence using JDBC backed persistent map.

Expand Down
5 changes: 4 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ include 'test-common'
include 'test-utils'
include 'smoke-test-utils'
include 'node-driver'
project(':node-driver').projectDir = new File("$settingsDir/testing/node-driver")
// Avoid making 'testing' a project, and allow build.gradle files to refer to these by their simple names:
['test-common', 'test-utils', 'smoke-test-utils', 'node-driver'].each {
project(":$it").projectDir = new File("$settingsDir/testing/$it")
}
include 'tools:explorer'
include 'tools:explorer:capsule'
include 'tools:demobench'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 579abda

Please sign in to comment.