Skip to content

Commit

Permalink
[quick-junit] in the readme, replace markdown checkboxes with ✅
Browse files Browse the repository at this point in the history
Makes them render properly on crates.io.
  • Loading branch information
sunshowers committed Jan 29, 2022
1 parent 4285f50 commit 7c2aea9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions quick-junit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.1.3] - 2022-01-29

- In the readme, replace Markdown checkboxes with Unicode ✅ to make them render properly on
crates.io.

## [0.1.2] - 2022-01-29

- Expand readme.
Expand All @@ -13,6 +18,7 @@

- Initial version.

[0.1.3]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.3
[0.1.2]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.2
[0.1.1]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.1
[0.1.0]: https://github.com/diem/diem-devtools/releases/tag/quick-junit-0.1.0
2 changes: 1 addition & 1 deletion quick-junit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "quick-junit"
description = "Data model and serializer for JUnit/XUnit XML"
version = "0.1.2"
version = "0.1.3"
authors = ["Diem Association <[email protected]>"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
Expand Down
14 changes: 7 additions & 7 deletions quick-junit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ The status (success, failure, error, or skipped) of a `TestCase` is represented

## Features

- x Serializing JUnit/XUnit to the [Jenkins format](https://llg.cubic.org/docs/junit/).
- x Including test reruns using `TestRerun`
- x Including flaky tests
- x Including standard output and error
- x Filtering out [invalid XML
- Serializing JUnit/XUnit to the [Jenkins format](https://llg.cubic.org/docs/junit/).
- Including test reruns using `TestRerun`
- Including flaky tests
- Including standard output and error
- Filtering out [invalid XML
characters](https://en.wikipedia.org/wiki/Valid_characters_in_XML) (eg ANSI escape codes)
from the output
- x Automatically keeping track of success, failure and error counts
- x Arbitrary properties and extra attributes
- Automatically keeping track of success, failure and error counts
- Arbitrary properties and extra attributes

This crate does not currently support deserializing JUnit XML. (PRs are welcome!)

Expand Down
14 changes: 7 additions & 7 deletions quick-junit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
//!
//! # Features
//!
//! - [x] Serializing JUnit/XUnit to the [Jenkins format](https://llg.cubic.org/docs/junit/).
//! - [x] Including test reruns using [`TestRerun`]
//! - [x] Including flaky tests
//! - [x] Including standard output and error
//! - [x] Filtering out [invalid XML
//! - Serializing JUnit/XUnit to the [Jenkins format](https://llg.cubic.org/docs/junit/).
//! - Including test reruns using [`TestRerun`]
//! - Including flaky tests
//! - Including standard output and error
//! - Filtering out [invalid XML
//! characters](https://en.wikipedia.org/wiki/Valid_characters_in_XML) (eg ANSI escape codes)
//! from the output
//! - [x] Automatically keeping track of success, failure and error counts
//! - [x] Arbitrary properties and extra attributes
//! - Automatically keeping track of success, failure and error counts
//! - Arbitrary properties and extra attributes
//!
//! This crate does not currently support deserializing JUnit XML. (PRs are welcome!)
//!
Expand Down

0 comments on commit 7c2aea9

Please sign in to comment.