Skip to content

Commit 5c12a56

Browse files
Merge pull request #11 from codecov/joseph/failure-message
feat: add failure message manipulation functions
2 parents 4a683dd + b2decaf commit 5c12a56

File tree

9 files changed

+461
-32
lines changed

9 files changed

+461
-32
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,15 @@ jobs:
3737
with:
3838
token: ${{ secrets.CODECOV_ORG_TOKEN }}
3939
url: ${{ secrets.CODECOV_URL }}
40+
file: unit.junit.xml
41+
disable_search: true
42+
4043

4144
- name: Upload results to codecov
4245
if: ${{ !cancelled() }}
4346
uses: codecov/test-results-action@v1
4447
with:
4548
token: ${{ secrets.CODECOV_ORG_TOKEN_STAGING }}
46-
url: ${{ secrets.CODECOV_STAGING_API_URL }}
49+
url: ${{ secrets.CODECOV_STAGING_API_URL }}
50+
file: unit.junit.xml
51+
disable_search: true

Cargo.lock

Lines changed: 150 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ name = "test_results_parser"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = "0.19.0"
12+
itertools = "0.12.1"
13+
lazy_static = "1.4.0"
14+
phf = { version = "0.11.2", features = ["macros"] }
15+
pyo3 = "0.20.1"
1316
quick-xml = "0.31.0"
17+
regex = "1.10.4"
1418
serde = { version = "1.0", features = ["derive"] }
1519
serde_json = "1.0"

0 commit comments

Comments
 (0)