Skip to content

Commit

Permalink
ignore random json (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnterickson authored Apr 2, 2023
1 parent 1dcda2d commit 0ae877a
Show file tree
Hide file tree
Showing 7 changed files with 155 additions and 66 deletions.
115 changes: 60 additions & 55 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cargo2junit"
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)"
version = "0.1.12"
version = "0.1.13"
authors = ["John Erickson <[email protected]>"]
edition = "2018"
repository = "https://github.com/johnterickson/cargo2junit"
Expand Down
6 changes: 6 additions & 0 deletions src/expected_outputs/float_time.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<testsuites>
<testsuite id="0" name="cargo test #0" package="testsuite/cargo test #0" tests="1" errors="0" failures="0" hostname="localhost" timestamp="2023-04-02T23:45:57.758681146Z" time="0.001401918">
<testcase name="test_something" time="0.001401918" classname="" />
</testsuite>
</testsuites>
6 changes: 6 additions & 0 deletions src/expected_outputs/issue76.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<testsuites>
<testsuite id="0" name="cargo test #0" package="testsuite/cargo test #0" tests="1" errors="0" failures="0" hostname="localhost" timestamp="2023-04-02T23:45:27.211449886Z" time="0.0072669">
<testcase name="set_up_subscriber" time="0.0072669" classname="test" />
</testsuite>
</testsuites>
Loading

0 comments on commit 0ae877a

Please sign in to comment.