You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/src/changelog.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,34 @@ toc_depth: 1
9
9
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
10
10
policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest.
11
11
12
+
## [0.9.116] - 2025-12-26
13
+
14
+
### Added
15
+
16
+
- Nextest now sets several new [environment variables](https://nexte.st/docs/configuration/env-vars/#environment-variables-nextest-sets) for each test execution:
17
+
18
+
-`NEXTEST_TEST_NAME`: The name of the test being run.
19
+
-`NEXTEST_ATTEMPT`: The current attempt number (starting from 1).
20
+
-`NEXTEST_TOTAL_ATTEMPTS`: The total number of attempts that will be made.
21
+
-`NEXTEST_BINARY_ID`: The binary ID of the test.
22
+
-`NEXTEST_ATTEMPT_ID`: A unique identifier for this specific attempt.
23
+
-`NEXTEST_STRESS_CURRENT` and `NEXTEST_STRESS_TOTAL`: For [stress tests](https://nexte.st/docs/features/stress-tests/), the current and total iteration counts.
24
+
25
+
These variables allow tests to be aware of their execution context, enabling conditional behavior based on retry attempts or stress test iterations.
26
+
27
+
Thanks [liranco](https://github.com/liranco) for your first contribution! ([#2797])
28
+
29
+
- With `cargo nextest run --verbose`, nextest now displays the command line used to run each test. Thanks [dangvu0502](https://github.com/dangvu0502) for your first contribution! ([#2800])
30
+
31
+
- A new [glossary page](https://nexte.st/docs/glossary/) documents key nextest terminology.
32
+
33
+
### Changed
34
+
35
+
- The internal `__NEXTEST_ATTEMPT` environment variable has been removed and replaced by the public `NEXTEST_ATTEMPT` variable.
0 commit comments