All Projects → TitouanVanBelle → fastlane-plugin-xchtmlreport

TitouanVanBelle / fastlane-plugin-xchtmlreport

Licence: MIT license
fastlane plugin for XCTestHTMLReport

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to fastlane-plugin-xchtmlreport

XCTestHTMLReport
Xcode-like HTML report for Unit and UI Tests
Stars: ✭ 581 (+3317.65%)
Mutual labels:  xctest, html-report, xcode-ui-testing
Xcov
Nice code coverage reporting without hassle
Stars: ✭ 467 (+2647.06%)
Mutual labels:  fastlane, html-report
Xctesthtmlreport
Xcode-like HTML report for Unit and UI Tests
Stars: ✭ 489 (+2776.47%)
Mutual labels:  xctest, html-report
Xcfit
Full Stack Protocol Oriented BDD in Xcode for iOS app with Swift using XCUITest, Cucumberish and FitNesse
Stars: ✭ 170 (+900%)
Mutual labels:  fastlane, xctest
LongWeekend-iOS
🏖📱 LongWeekend is iOS Application that supports checking long weekends when taking a vacation in Japan
Stars: ✭ 19 (+11.76%)
Mutual labels:  fastlane
Peasy
A pure Swift mock server for embedding and running directly within iOS/macOS UI tests. Easy peasy.
Stars: ✭ 32 (+88.24%)
Mutual labels:  xctest
appium-mac2-driver
Next-gen Appium macOS driver, backed by Apple XCTest
Stars: ✭ 55 (+223.53%)
Mutual labels:  xctest
fastlane-plugin-run tests firebase testlab
Runs Android tests in Firebase Test Lab 🚀
Stars: ✭ 46 (+170.59%)
Mutual labels:  fastlane
firim
Upload ipa binary to fir.im in fastlane chain
Stars: ✭ 51 (+200%)
Mutual labels:  fastlane
upload dsym to bugly
fastlane plugin upload dSYM/ipa to bugly
Stars: ✭ 26 (+52.94%)
Mutual labels:  fastlane
html-reporter
Html reporter for hermione
Stars: ✭ 39 (+129.41%)
Mutual labels:  html-report
ionic4-boilerplate
🚀 boilerplate for ionic4 with CI based on travis and fastlane. doc and example are provided
Stars: ✭ 25 (+47.06%)
Mutual labels:  fastlane
ViewControllerPresentationSpy
Unit test presented and dismissed iOS view controllers, including alerts and action sheets
Stars: ✭ 117 (+588.24%)
Mutual labels:  xctest
HitNotes
Rhythm-based mobile game
Stars: ✭ 24 (+41.18%)
Mutual labels:  fastlane
AutoMate-AppBuddy
iOS UI automation tests helper framework, designed to work with the AutoMate
Stars: ✭ 31 (+82.35%)
Mutual labels:  xctest
xcresult
Ruby interface for inspecting data and exporting data from Xcode 11 .xcresult files
Stars: ✭ 31 (+82.35%)
Mutual labels:  fastlane
python-appium-framework
Complete Python Appium framework in 360 degree
Stars: ✭ 43 (+152.94%)
Mutual labels:  html-report
spec
Unit testing Vapor 4 applications through declarative specifications.
Stars: ✭ 32 (+88.24%)
Mutual labels:  xctest
RecordingSample
Recording Sample by React Native
Stars: ✭ 27 (+58.82%)
Mutual labels:  fastlane
k6-reporter
Output K6 test run results as formatted & easy to read HTML reports
Stars: ✭ 160 (+841.18%)
Mutual labels:  html-report

screenshot

What is it?

Fastlane plugin for XCHTMLReport

fastlane Plugin Badge

Install

fastlane add_plugin xchtmlreport

Usage

Basic Usage

  • Add the following to your Scanfile
result_bundle(true)
  • Add a call to xchtmlreport after running your tests. For example
lane :tests do
  scan (
  	fail_build: false # Otherwise following steps won't be executed
  )
  xchtmlreport
end

Options

Specify the path to the result bundle

By default the plugin will use the default location of the result bundle which is under fastlane/test_output/ but your also have the ability to pass the path yourself

xchtmlreport(
  result_bundle_path: path_to_result_bundle
)

You can also pass multiple paths

xchtmlreport(
  result_bundle_paths: [
    path_to_ui_result_bundle,
    path_to_unit_result_bundle
  ]
)

Specify path to xchtmlreport

XCHTMLReport is by default install at /usr/local/bin/xchtmlreport. Should it be somewhere else you can pass the path to the binary to the plugin

xchtmlreport(
  binary_path: path_to_xchtmlreport
)

Enable JUnit reporting

You can enable the JUnit reporting as well

xchtmlreport(
  enable_junit: true
)

Contribution

Please create an issue whenever you find an issue or think a feature could be a good addition to XCTestHTMLReport's fastlane plugin. Always make sure to follow the Contributing Guidelines. Feel free to take a shot at these issues.

License

XCTestHTMLReport's fastlane plugin is available under the MIT license.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].