Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#2702): runtime without dependencies #2703

Merged
Merged
Changes from 1 commit
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
6 changes: 1 addition & 5 deletions eo-runtime/src/test/groovy/verify.groovy
Original file line number Diff line number Diff line change
@@ -28,16 +28,12 @@ import java.nio.file.Path
* Entry point for running validation scripts.
* To add new validation create new script in this folder and add it
* to the list below.
* @todo #2684:30min Remove dependencies from eo-runtime. eo-runtime must stay clear out of any
* dependencies except those that are used in tests. It's needed to remove all such dependencies
* and include 'check-runtime-deps.groovy' test (which is failing for now) into 'tests' list. We
* also need to add "test" scope for all dependencies in pom.xml.
*/
Path folder = basedir.toPath().resolve("src").resolve("test").resolve("groovy")
tests = [
'check-folders-numbering.groovy',
'check-all-java-classes-compiled.groovy',
// 'check-runtime-deps.groovy'
'check-runtime-deps.groovy'
]
for (it in tests) {
def res = evaluate folder.resolve(it).toFile()