File tree 5 files changed +34
-0
lines changed
5 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -368,8 +368,14 @@ jobs:
368
368
name : Lint
369
369
command : npm run lint
370
370
- run :
371
+ environment :
372
+ RESULTS_PATH : ../../test-results/mon_pix
371
373
name : Test
372
374
command : npm run test:ci
375
+ - store_test_results :
376
+ path : /home/circleci/test-results/mon_pix
377
+ - store_artifacts :
378
+ path : /home/circleci/test-results/mon_pix
373
379
374
380
orga_build_and_test :
375
381
executor :
@@ -392,8 +398,14 @@ jobs:
392
398
name : Lint
393
399
command : npm run lint
394
400
- run :
401
+ environment :
402
+ RESULTS_PATH : ../../test-results/orga
395
403
name : Test
396
404
command : npm run test:ci
405
+ - store_test_results :
406
+ path : /home/circleci/test-results/orga
407
+ - store_artifacts :
408
+ path : /home/circleci/test-results/orga
397
409
398
410
pix1d_build_and_test :
399
411
executor :
@@ -416,8 +428,14 @@ jobs:
416
428
name : Lint
417
429
command : npm run lint
418
430
- run :
431
+ environment :
432
+ RESULTS_PATH : ../../test-results/pix1d
419
433
name : Test
420
434
command : npm run test:ci
435
+ - store_test_results :
436
+ path : /home/circleci/test-results/pix1d
437
+ - store_artifacts :
438
+ path : /home/circleci/test-results/pix1d
421
439
422
440
certif_build_and_test :
423
441
executor :
@@ -440,8 +458,14 @@ jobs:
440
458
name : Lint
441
459
command : npm run lint
442
460
- run :
461
+ environment :
462
+ RESULTS_PATH : ../../test-results/certif
443
463
name : Test
444
464
command : npm run test:ci
465
+ - store_test_results :
466
+ path : /home/circleci/test-results/certif
467
+ - store_artifacts :
468
+ path : /home/circleci/test-results/certif
445
469
446
470
admin_build_and_test :
447
471
executor :
@@ -464,8 +488,14 @@ jobs:
464
488
name : Lint
465
489
command : npm run lint
466
490
- run :
491
+ environment :
492
+ RESULTS_PATH : ../../test-results/admin
467
493
name : Test
468
494
command : npm run test:ci
495
+ - store_test_results :
496
+ path : /home/circleci/test-results/admin
497
+ - store_artifacts :
498
+ path : /home/circleci/test-results/admin
469
499
470
500
e2e_test_app :
471
501
executor :
Original file line number Diff line number Diff line change @@ -25,5 +25,6 @@ module.exports = process.env.CI
25
25
? {
26
26
...config ,
27
27
reporter : 'xunit' ,
28
+ report_file : `${ process . env . RESULTS_PATH ?? '.' } /report.xml` ,
28
29
}
29
30
: config ;
Original file line number Diff line number Diff line change @@ -24,5 +24,6 @@ module.exports = process.env.CI
24
24
? {
25
25
...config ,
26
26
reporter : 'xunit' ,
27
+ report_file : `${ process . env . RESULTS_PATH ?? '.' } /report.xml` ,
27
28
}
28
29
: config ;
Original file line number Diff line number Diff line change @@ -25,5 +25,6 @@ module.exports = process.env.CI
25
25
? {
26
26
...config ,
27
27
reporter : 'xunit' ,
28
+ report_file : `${ process . env . RESULTS_PATH ?? '.' } /report.xml` ,
28
29
}
29
30
: config ;
Original file line number Diff line number Diff line change @@ -24,5 +24,6 @@ module.exports = process.env.CI
24
24
? {
25
25
...config ,
26
26
reporter : 'xunit' ,
27
+ report_file : `${ process . env . RESULTS_PATH ?? '.' } /report.xml` ,
27
28
}
28
29
: config ;
You can’t perform that action at this time.
0 commit comments