Metadata-Version: 2.1
Name: pytest-github-actions-annotate-failures
Version: 0.0.7
Summary: pytest plugin to annotate failed tests with a workflow command for GitHub Actions
Home-page: https://github.com/utgwkk/pytest-github-actions-annotate-failures
Author: utgwkk
Author-email: utagawakiki@gmail.com
License: MIT
Description: # pytest-github-actions-annotate-failures
        [Pytest](https://pypi.org/project/pytest/) plugin to annotate failed tests with a [workflow command for GitHub Actions](https://help.github.com/en/actions/reference/workflow-commands-for-github-actions)
        
        ## Usage
        Just install and run pytest with this plugin in your workflow. For example,
        
        ```yaml
        name: test
        
        on:
          push:
        
        jobs:
          test:
            runs-on: ubuntu-latest
        
            steps:
            - uses: actions/checkout@v2
        
            - uses: actions/setup-python@v1
              with:
                python-version: 3.7
        
            - name: Install dependencies
              run: |
                python -m pip install --upgrade pip
                pip install -r requirements.txt
        
            - name: Install plugin
              run: pip install pytest-github-actions-annotate-failures
        
            - run: pytest
        ```
        
        ## Screenshot
        [![Image from Gyazo](https://i.gyazo.com/b578304465dd1b755ceb0e04692a57d9.png)](https://gyazo.com/b578304465dd1b755ceb0e04692a57d9)
        
Platform: UNKNOWN
Classifier: Framework :: Pytest
Description-Content-Type: text/markdown
