Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testProject (0.08 sec)

  1. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

    class TestPerformanceTest(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage, init = {
            val os = Os.LINUX
            val buildTypeThis = this
            val testProject = "smallJavaMultiProject"
    
            fun BuildSteps.gradleStep(tasks: List<String>) {
                gradleWrapper {
                    name = "GRADLE_RUNNER"
                    gradleParams =
                        (
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    allowEmpty = true,
                    description = "The baselines you want to run performance tests against. Empty means default baseline.",
                )
                text(
                    "testProject",
                    "",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false,
                    description = "The test project to use. E.g. largeJavaMultiProject",
                )
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

    testing/$performanceProjectName/build/performance-test-results.zip
    """
                if (performanceTestProject.performanceTests.any { it.testProjects.isNotEmpty() }) {
                    val dependencyBuildIds =
                        performanceTestProject.performanceTests
                            .filter { it.testProjects.isNotEmpty() }
                            .joinToString(",") { "%dep.${it.id}.env.BUILD_ID%" }
    
                    val dependencyBaselines =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                applyDefaultDependencies(model, this)
            },
        )
    
    fun getPerformanceTestTaskNames(
        performanceSubProject: String,
        testProjects: List<String>,
        performanceTestTaskSuffix: String,
    ): List<String> =
        testProjects.map {
            ":$performanceSubProject:$it$performanceTestTaskSuffix"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top