Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zytedata/onefile
Merge multiples files into one!
https://github.com/zytedata/onefile
Last synced: 4 days ago
JSON representation
Merge multiples files into one!
- Host: GitHub
- URL: https://github.com/zytedata/onefile
- Owner: zytedata
- License: mit
- Created: 2024-02-06T17:31:59.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-02T15:21:56.000Z (10 months ago)
- Last Synced: 2024-11-11T16:26:13.583Z (2 months ago)
- Language: HTML
- Size: 50.8 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# onefile
Merge multiples files into one!Current supported files to merge:
- junit.xml (Ref.: [JUnitXML file](https://docs.pytest.org/en/7.1.x/how-to/output.html#creating-junitxml-format-files))
- report.html (Ref.: [self-contained HTML report file](https://pytest-html.readthedocs.io/en/latest/user_guide.html#enhancing-reports))Example for junit.xml file merge:
```
from onefile.junit import merge_junit_filesmerge_junit_files(["junit_1.xml", "junit_2.xml", "junit_3.xml"])
```Example for report.html file merge:
```
from onefile.report_html import merge_report_html_filesmerge_junit_files(["report_html_1.xml", "report_html_2.xml", "report_html_3.xml"])
```