[DEV] correct dependency and test

This commit is contained in:
Edouard DUPIN 2020-08-28 23:24:30 +02:00
parent 10017b88a4
commit 2cfdf9e26d
3 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,6 @@
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-14">
<attributes>
<attribute name="module" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>

View File

@ -53,7 +53,7 @@ package_job:
dependencies:
- test_job
script:
- mvn $MAVEN_CLI_OPTS package
- mvn $MAVEN_CLI_OPTS package -Dmaven.test.skip=true
artifacts:
when: on_success
expire_in: 3 day

View File

@ -75,7 +75,7 @@ public class TestBasicLog {
Log.print("test direct [START]");
// test de 10 secondes contre 0.0?? second quand le niveau n'est pas assez grand ...
long timeStart = System.currentTimeMillis();
for (int iii = 0; iii < 100000; iii++)
for (int iii = 0; iii < 100000000; iii++)
Log2.debug("test direct");
long timeStop = System.currentTimeMillis();
Log.print("test direct [END] : " + timeStart + " to " + timeStop + " ==> delta=" + (timeStop - timeStart));