Gouzi Mohaled commited on
Commit
c1e488e
·
1 Parent(s): 8d078f3

Ajout du dossier .config

Browse files
Files changed (1) hide show
  1. .config/nextest.toml +12 -0
.config/nextest.toml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [profile.ci]
2
+ # Retry tests before failing them.
3
+ retries = { backoff = "exponential", count = 2, delay = "2s" }
4
+ # Do not cancel the test run on the first failure.
5
+ fail-fast = false
6
+ # Print out output for failing tests as soon as they fail, and also at the end
7
+ # of the run (for easy scrollability).
8
+ failure-output = "immediate-final"
9
+
10
+ # save junit report
11
+ [profile.ci.junit]
12
+ path = "junit.xml"