1# recommended nextest profile for CI jobs (from 2# https://nexte.st/book/configuration.html#profiles) 3[profile.ci] 4# Print out output for failing tests as soon as they fail, and also at the end 5# of the run (for easy scrollability). 6failure-output = "immediate-final" 7# Do not cancel the test run on the first failure. 8fail-fast = false 9 10# TODO(eliza): uncomment this when we can get nicer JUnit output from nextest... 11# [profile.ci.junit] 12# path = "junit.xml"