rfscholte commented on code in PR #14003:
URL: https://github.com/apache/pinot/pull/14003#discussion_r1764901998


##########
pom.xml:
##########
@@ -294,6 +294,27 @@
         <spotless.check.skip>true</spotless.check.skip>
       </properties>
     </profile>
+    <profile>
+      <id>profiler</id>
+      <activation>
+        <property> <!-- with this the profiler extension is activated too -->
+          <name>profiler</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <version>${surefire.version}</version>
+            <configuration>
+              <reportFormat>plain</reportFormat>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>

Review Comment:
   this will report the durations of individual tests, but also for every maven 
plugin and maven project. Surefire will write to console, which makes the 
output unreadable again, but AFAIK this info is already logged to file as well. 
   If nobody cares I would keep if off, and activate it once you need to 
analyse build times again.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to