Child pages
  • Using Istanbul to integrate code coverage report in Jenkins

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

work.servoy.install.dir = C:/Servoy
smart_test_solutions = servoyTestSolutionName
WORKSPACE = ${WORKSPACE}
ANT_CONTRIB_JAR = ${ANT_CONTRIB_JAR}
antRunner.dir = ${WORKSPACE}/JenkinsConfig/svyJenkinsConfig/CBI_config
servoy.test.property.file = ${WORKSPACE}/JenkinsConfig/svyJenkinsConfig/CBI_config/servoy.properties
instrument.exclude_file_folders .modules = JenkinsConfig, solution_test, customFile.js
instrument.include.modules = solutionName 

The property instrument.exclude_file_foldersmodules can be used to exclude files or folders from being instrumented. Use this property to create a cleaner report. You might prefer to review the instrumentation report of files of separate modules in their own project space and not include them in your project space.
Can use in combination with property instrument.include.modules to specify which modules should be included in the report. Can specify in the include property only modules name, is not possible to specify file names. 

The svyJenkinsConfig project contains also a standard servoy.properties file which references only to the servoy_repository database. To use different servoy settings and to references other database provide your own servoy.properties file.

...