This repository has been archived by the owner on Dec 10, 2020. It is now read-only.
forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract the junit xml report parser.
This is the final step before re-using in pytest_run. Tests are added for all the extracted code now that its no longer a private implementation detail. Testing Done: Locally green: ``` ./pants test.pytest --no-timeouts \ tests/python/pants_test/java/junit/ \ tests/python/pants_test/backend/jvm/tasks:junit_run \ tests/python/pants_test/backend/jvm/tasks:junit_run_integration \ tests/python/pants_test/backend/jvm/tasks:junit_tests_concurrency_integration \ tests/python/pants_test/backend/jvm/tasks:junit_tests_integration ``` CI went green here: https://travis-ci.org/pantsbuild/pants/builds/166281880 Bugs closed: 3837, 3943 Reviewed at https://rbcommons.com/s/twitter/r/4292/
- Loading branch information
Showing
8 changed files
with
388 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright 2016 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
python_library( | ||
sources=globs('*.py'), | ||
dependencies=[ | ||
'3rdparty/python/twitter/commons:twitter.common.collections', | ||
'src/python/pants/util:objects', | ||
'src/python/pants/util:xml_parser', | ||
] | ||
) |
Empty file.
Oops, something went wrong.