Skip to content

Commit 6230b29

Browse files
committed
update changelog + add cargo test to CI
We definitely also want to support cargo test.
1 parent 3d5b2a4 commit 6230b29

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ jobs:
7676
run: cargo build
7777
- name: Run tests
7878
run: cargo nextest run
79+
- name: Run tests with cargo test
80+
run: cargo test

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.2.8] - 2024-04-24
4+
5+
### Fixed
6+
7+
- Fixed quadratic performance issue with nextest, where datatest-stable would iterate over the
8+
entire list of files for each test. Thanks [@zaneduffield](https://github.com/zaneduffield) for
9+
your first contribution!
10+
311
## [0.2.7] - 2024-04-21
412

513
### Changed
@@ -88,6 +96,7 @@ There are no functional changes in this release.
8896

8997
(Version 0.1.0 was yanked because of a metadata issue.)
9098

99+
[0.2.8]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.8
91100
[0.2.7]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.7
92101
[0.2.6]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.6
93102
[0.2.5]: https://github.com/nextest-rs/datatest-stable/releases/tag/datatest-stable-0.2.5

CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Prerequisites
2+
3+
datatest-stable is designed to work with both `cargo test` and `cargo nextest`. In either case,
4+
nextest is required for one of the tests. Install it via [the instructions here](https://get.nexte.st).
5+
16
## Pull Requests
27

38
If you have a new feature in mind, please discuss the feature in an issue to ensure that your

0 commit comments

Comments
 (0)