Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d22097d

Browse files
committed
1 parent e4ef856 commit d22097d

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Here you can see the full list of changes between each pytest-instafail release.
2323
^^^^^^^^^^^^^^^^^^^^^^^
2424

2525
- Added support for Python 3.4
26-
- Added support for py.test 2.6
27-
- Fixed failing tests on py.test 2.6
26+
- Added support for pytest 2.6
27+
- Fixed failing tests on pytest 2.6
2828

2929
0.2.0 (March 6, 2014)
3030
^^^^^^^^^^^^^^^^^^^^^

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pytest-instafail
77
:alt: Build Status
88
.. _build status: http://travis-ci.org/pytest-dev/pytest-instafail
99

10-
pytest-instafail is a plugin for `py.test <http://pytest.org>`_ that shows
10+
pytest-instafail is a plugin for `pytest <http://pytest.org>`_ that shows
1111
failures and errors instantly instead of waiting until the end of test session.
1212

1313
Requirements
@@ -27,7 +27,7 @@ To install pytest-instafail::
2727

2828
Then run your tests with::
2929

30-
$ py.test --instafail
30+
$ pytest --instafail
3131

3232
Resources
3333
---------

pytest_instafail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pytest_instafail
44
~~~~~~~~~~~~~~~~
55
6-
py.test plugin to show failures instantly.
6+
pytest plugin to show failures instantly.
77
88
:copyright: (c) 2013-2016 by Janne Vanhala.
99
:license: BSD, see LICENSE for more details.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='pytest-instafail',
5-
description='py.test plugin to show failures instantly',
5+
description='pytest plugin to show failures instantly',
66
long_description=open("README.rst").read(),
77
version='0.4.1',
88
url='https://github.com/pytest-dev/pytest-instafail',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ deps =
1111
pytest3: pytest-xdist
1212
pytest4: pytest>4.0
1313
pytest4: pytest-xdist
14-
commands = py.test {posargs}
14+
commands = pytest {posargs}

0 commit comments

Comments
 (0)