Skip to content

Commit

Permalink
Merge pull request #684 from allure-framework/readme-mistakes
Browse files Browse the repository at this point in the history
Fix readme and workflow mistakes
  • Loading branch information
skhomuti committed Aug 11, 2022
2 parents 108a370 + f1d3682 commit a7a8aa1
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 85 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,28 @@ jobs:
id: filter
with:
filters: |
allure-behave: allure-behave/**
allure-nose2: allure-nose2/**
allure-pytest: allure-pytest/**
allure-pytest-bdd: allure-pytest-bdd/**
allure-behave:
- allure-behave/**
- allure-python-commons/**
- allure-python-commons-test/**
allure-nose2:
- allure-nose2/**
- allure-python-commons/**
- allure-python-commons-test/**
allure-pytest:
- allure-pytest/**
- allure-python-commons/**
- allure-python-commons-test/**
allure-pytest-bdd:
- allure-pytest-bdd/**
- allure-python-commons/**
- allure-python-commons-test/**
allure-robotframework:
- allure-robotframework/**
- allure-python-commons/**
- allure-python-commons-test/**
allure-python-commons: allure-python-commons/**
allure-python-commons-test: allure-python-commons-test/**
allure-robotframework: allure-robotframework/**
commons:
name: Build commons
Expand All @@ -47,6 +62,7 @@ jobs:
name: Static check
runs-on: ubuntu-latest
needs: [commons, changes]
if: ${{ needs.changes.outputs.packages != '[]' }}
strategy:
matrix:
package: ${{ fromJSON(needs.changes.outputs.packages) }}
Expand Down Expand Up @@ -78,6 +94,7 @@ jobs:
name: Build package
runs-on: ubuntu-latest
needs: [linters, commons, changes]
if: ${{ needs.changes.outputs.packages != '[]' }}
strategy:
matrix:
package: ${{ fromJSON(needs.changes.outputs.packages) }}
Expand Down
63 changes: 63 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Allure Python Integrations
[![Build](https://github.com/allure-framework/allure-python/actions/workflows/build.yaml/badge.svg)](https://github.com/allure-framework/allure-python/actions/workflows/build.yaml)

The repository contains adaptors for Python-based test frameworks.
Documentation is available
[online](https://docs.qameta.io/allure-report/), also you can get help at
[gitter channel](https://gitter.im/allure-framework/allure-core)

## Pytest
[![Release
Status](https://img.shields.io/pypi/v/allure-pytest)](https://pypi.python.org/pypi/allure-pytest)
[![Downloads](https://img.shields.io/pypi/dm/allure-pytest)](https://pypi.python.org/pypi/allure-pytest)

Allure [pytest](http://pytest.org) integration. It's developed as pytest
plugin and distributed via
[pypi](https://pypi.python.org/pypi/allure-pytest)

## Behave
[![Release
Status](https://img.shields.io/pypi/v/allure-behave)](https://pypi.python.org/pypi/allure-behave)
[![Downloads](https://img.shields.io/pypi/dm/allure-behave)](https://pypi.python.org/pypi/allure-behave)

Allure [behave](https://behave.readthedocs.io/en/latest/) integration.
Just external formatter that produce test results in allure2 format.
This package is available on
[pypi](https://pypi.python.org/pypi/allure-behave)

## Robot Framework
[![Release
Status](https://img.shields.io/pypi/v/allure-robotframework)](https://pypi.python.org/pypi/allure-robotframework)
[![Downloads](https://img.shields.io/pypi/dm/allure-robotframework)](https://pypi.python.org/pypi/allure-robotframework)

Allure [RobotFramework](http://robotframework.org/) integration. This
integration is a
[Listener](http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#listener-interface\))
and does not require changing autotests

[Read more ...](/allure-robotframework/README.rst)

## Pytest-BDD

[![Release
Status](https://img.shields.io/pypi/v/allure-pytest-bdd)](https://pypi.python.org/pypi/allure-pytest-bdd)
[![Downloads](https://img.shields.io/pypi/dm/allure-pytest-bdd)](https://pypi.python.org/pypi/allure-pytest-bdd)

Allure [pytest-bdd](http://pytest.org) integration. It's developed as
pytest plugin and distributed via
[pypi](https://pypi.python.org/pypi/allure-pytest-bdd)

## Nose2
[![Release
Status](https://img.shields.io/pypi/v/allure-nose2)](https://pypi.python.org/pypi/allure-nose2)
[![Downloads](https://img.shields.io/pypi/dm/allure-nose2)](https://pypi.python.org/pypi/allure-nose2)

## Allure python commons

Common engine for all modules. It is useful for make integration with
your homemade frameworks.

## Allure python commons test

Just pack of hamcrest matchers for validation result in allure2 json
format.
80 changes: 0 additions & 80 deletions README.rst

This file was deleted.

0 comments on commit a7a8aa1

Please sign in to comment.