File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/test/java/com/sio/javatd5sio2/models Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4343 if : success() || failure()
4444 with :
4545 name : ciMavenReport-${{ github.run_id }}
46- path : target/surefire-reports
46+ # path: target/surefire-reports
47+ path : target/consolidated-reports
4748 - name : Test Report
4849 uses : dorny/test-reporter@v1
4950 if : success() || failure() # run this step even if previous step failed
Original file line number Diff line number Diff line change 123123 </executions >
124124 <configuration >
125125<!-- <outputDirectory>${project.build.directory}/consolidated-reports</outputDirectory>-->
126- <outputDirectory >${project.build.directory} /surefire -reports</outputDirectory >
126+ <outputDirectory >${project.build.directory} /consolidated -reports</outputDirectory >
127127 <linkXRef >false</linkXRef >
128128 <!-- Générer des rapports XML uniquement -->
129129 <reportFormat >xml</reportFormat >
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ void setUp() {
1818 void testTaskInitialization () {
1919 Task newTask = new Task ("New task" );
2020 assertEquals ("New task" , newTask .getTitle ());
21- // assertFalse(newTask.isCompleted());
22- assertTrue (newTask .isCompleted ());
21+ assertFalse (newTask .isCompleted ());
22+ // assertTrue(newTask.isCompleted());
2323 }
2424
2525 @ Test
You can’t perform that action at this time.
0 commit comments