GitXplorerGitXplorer
n

behave-pytest

public
0 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
6bd48b17901f53fab942acf105cb128cf6f1a45f

Added MIT licence text

aalex-rudakov committed 9 years ago
Unverified
680ef1f163e3357a68c8308bebcbea4c6cfef5d4

Initial version

committed 9 years ago

README

The README file for this repository.

Behave-pytest

Small utility package to integrate pytest asserts into Behave project.

Quick start

Installation:

$ pip install behave-pytest

Add before_all hook into your project. like this (features/environment.py):

from behave_pytest.hook import install_pytest_asserts

def before_all(context):
    install_pytest_asserts()

That's it. When running test you will see standard pytest assertion details:

Behave + Pytest