Metadata-Version: 2.1
Name: qase-xctest
Version: 1.0.3
Summary: Qase TMS
Home-page: https://github.com/qase-tms/qase-python/tree/master/qase-xctest
Author: Mikhail Golovko
Author-email: mihailmvg@gmail.com
License: apache
Description: # Qase XCTest Utils
        
        ## How to install
        
        `pip install qase-xctest`
        
        ## How to use
        
        ### For XCode
        
        `--api_token YOUR_API_TOKEN` - Api token for qase api. Get api token [here](https://app.qase.io/user/api/token).
        
        `--project_code YOUR_PROJECT_CODE` - You can find project code [here](https://app.qase.io/projects).
        
        `--build $BUILD_ROOT` - Xcode build folder. Xcode setup `$BUILD_ROOT` enviroment automatically.
        Always using this enviroment for `--build` arg.
        
        `--run_name From_Xcode` - Arbitrary run name. You can detect your run result from all results.
        
        `--upload_attachments` - Send attachments from report.
        
        ```bash
        qasexcode --build $BUILD_ROOT \
          --api_token YOUR_API_TOKEN \
          --project_code YOUR_PROJECT_CODE \
          --run_name From_Xcode \
          --upload_attachments
        ```
        
        ### For CI
        
        `--xcresults` - Paths to reports. If your reports will be contains one test result multiple times, enable settings `Allow to add results for cases in closed runs.` in your project.
        
        
        ```base
        qasexcode --xcresults PathToReport/1.xcresult PathToReport/2.xcresult \
          --api_token YOUR_API_TOKEN \
          --project_code YOUR_PROJECT_CODE \
          --run_name From_ci \
          --upload_attachments
        ```
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Provides-Extra: testing
