mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 19:05:23 -08:00
Add python-xunit-parser.ts with associated case statement Add python-xunit to reporter docs in action.yml Add tests Update README Resolves #244 Resolves #633
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import {ParseOptions} from '../../test-parser'
|
|
import {JavaJunitParser} from '../java-junit/java-junit-parser'
|
|
|
|
export class PythonXunitParser extends JavaJunitParser {
|
|
constructor(readonly options: ParseOptions) {
|
|
super(options)
|
|
}
|
|
}
|