├── .codecov.yml ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── new_output.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── release.yml │ ├── stale.yml │ └── style.yml ├── .gitignore ├── .readme-images ├── example.png ├── gh-comment.png └── gh-summary.png ├── .spi.yml ├── .swift-version ├── .swiftformat ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── XcbeautifyLib │ ├── Array+Safe.swift │ ├── CaptureGroups.swift │ ├── Constants.swift │ ├── Formatter.swift │ ├── JUnitReporter.swift │ ├── OutputHandler.swift │ ├── Parser.swift │ ├── Renderers │ │ ├── FileComponents.swift │ │ ├── Microsoft │ │ │ ├── AzureDevOpsPipelinesRenderer.swift │ │ │ ├── GitHubActionsRenderer.swift │ │ │ └── MicrosoftOutputRendering.swift │ │ ├── OutputRendering.swift │ │ ├── TeamCityRenderer.swift │ │ └── TerminalRenderer.swift │ ├── String+Colored.swift │ ├── String+Substring.swift │ ├── XCBeautifier.swift │ └── XCRegex.swift └── xcbeautify │ ├── OutputFormat+ExpressibleByArgument.swift │ ├── Version.swift │ └── Xcbeautify.swift ├── Tests └── XcbeautifyLibTests │ ├── CaptureGroupTests.swift │ ├── JUnitReporterTests.swift │ ├── OutputHandlerTests.swift │ ├── ParserTests.swift │ ├── ParsingTests.swift │ ├── RendererTests │ ├── AzureDevOpsPipelinesRendererTests.swift │ ├── GitHubActionsRendererTests.swift │ ├── TeamCityRendererTests.swift │ └── TerminalRendererTests.swift │ ├── TestData │ ├── MixedTestLog_6_0_Expected_XML_Linux.txt │ ├── MixedTestLog_6_0_Expected_XML_macOS.txt │ ├── MixedTestLog_6_0_Linux.txt │ ├── MixedTestLog_6_0_macOS.txt │ ├── ParallelTestLog.txt │ ├── TestLog.txt │ ├── clean_build_xcode_15_1.txt │ ├── demo_swift_testing_log.txt │ ├── large_xcodebuild_log.txt │ ├── spi_swift_testing_full_log.txt │ ├── spi_swift_testing_short_log.txt │ └── swift_test_log_macOS.txt │ └── UniqueCaptureGroupTests.swift └── tools ├── export_coverage ├── format ├── install-swift-linux-arm64 ├── lint └── measure /.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - 'Tests' 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cpisciotta 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [cpisciotta] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/ISSUE_TEMPLATE/new_output.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.gitignore -------------------------------------------------------------------------------- /.readme-images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.readme-images/example.png -------------------------------------------------------------------------------- /.readme-images/gh-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.readme-images/gh-comment.png -------------------------------------------------------------------------------- /.readme-images/gh-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.readme-images/gh-summary.png -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 6.1 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/.swiftformat -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/README.md -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Array+Safe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Array+Safe.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/CaptureGroups.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/CaptureGroups.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Constants.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Formatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Formatter.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/JUnitReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/JUnitReporter.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/OutputHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/OutputHandler.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Parser.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/FileComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/FileComponents.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/Microsoft/AzureDevOpsPipelinesRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/Microsoft/AzureDevOpsPipelinesRenderer.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/Microsoft/GitHubActionsRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/Microsoft/GitHubActionsRenderer.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/Microsoft/MicrosoftOutputRendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/Microsoft/MicrosoftOutputRendering.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/OutputRendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/OutputRendering.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/TeamCityRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/TeamCityRenderer.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/Renderers/TerminalRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/Renderers/TerminalRenderer.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/String+Colored.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/String+Colored.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/String+Substring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/String+Substring.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/XCBeautifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/XCBeautifier.swift -------------------------------------------------------------------------------- /Sources/XcbeautifyLib/XCRegex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/XcbeautifyLib/XCRegex.swift -------------------------------------------------------------------------------- /Sources/xcbeautify/OutputFormat+ExpressibleByArgument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/xcbeautify/OutputFormat+ExpressibleByArgument.swift -------------------------------------------------------------------------------- /Sources/xcbeautify/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/xcbeautify/Version.swift -------------------------------------------------------------------------------- /Sources/xcbeautify/Xcbeautify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Sources/xcbeautify/Xcbeautify.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/CaptureGroupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/CaptureGroupTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/JUnitReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/JUnitReporterTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/OutputHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/OutputHandlerTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/ParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/ParserTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/ParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/ParsingTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/RendererTests/AzureDevOpsPipelinesRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/RendererTests/AzureDevOpsPipelinesRendererTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/RendererTests/GitHubActionsRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/RendererTests/GitHubActionsRendererTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/RendererTests/TeamCityRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/RendererTests/TeamCityRendererTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/RendererTests/TerminalRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/RendererTests/TerminalRendererTests.swift -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Expected_XML_Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Expected_XML_Linux.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Expected_XML_macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Expected_XML_macOS.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_Linux.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/MixedTestLog_6_0_macOS.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/ParallelTestLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/ParallelTestLog.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/TestLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/TestLog.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/clean_build_xcode_15_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/clean_build_xcode_15_1.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/demo_swift_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/demo_swift_testing_log.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/large_xcodebuild_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/large_xcodebuild_log.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/spi_swift_testing_full_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/spi_swift_testing_full_log.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/spi_swift_testing_short_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/spi_swift_testing_short_log.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/TestData/swift_test_log_macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/TestData/swift_test_log_macOS.txt -------------------------------------------------------------------------------- /Tests/XcbeautifyLibTests/UniqueCaptureGroupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/Tests/XcbeautifyLibTests/UniqueCaptureGroupTests.swift -------------------------------------------------------------------------------- /tools/export_coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/tools/export_coverage -------------------------------------------------------------------------------- /tools/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/tools/format -------------------------------------------------------------------------------- /tools/install-swift-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/tools/install-swift-linux-arm64 -------------------------------------------------------------------------------- /tools/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/tools/lint -------------------------------------------------------------------------------- /tools/measure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpisciotta/xcbeautify/HEAD/tools/measure --------------------------------------------------------------------------------