Skip to content

Commit e077193

Browse files
author
Michael Howitz
authored
Merge branch 'master' into yaml
2 parents 64044c0 + 05a909a commit e077193

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ script:
2222
[[ "$TRAVIS_PYTHON_VERSION" != pypy* ]]; then
2323
pre-commit run --all-files --show-diff-on-failure;
2424
fi
25-
- py.test
25+
- pytest

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Preparing Pull Requests
3030
#. Install `tox <https://tox.readthedocs.io/en/latest/>`_::
3131

3232
Tox is used to run all the tests and will automatically setup virtualenvs
33-
to run the tests in. Implicitly http://www.virtualenv.org/en/latest/ is used::
33+
to run the tests in. Implicitly https://virtualenv.pypa.io/ is used::
3434

3535
$ pip install tox
3636
$ tox -e linting,py37

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This Source Code Form is subject to the terms of the Mozilla Public
22
License, v. 2.0. If a copy of the MPL was not distributed with this
3-
file, You can obtain one at http://mozilla.org/MPL/2.0/.
3+
file, You can obtain one at https://www.mozilla.org/MPL/2.0/.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pytest-rerunfailures
22
====================
33

4-
pytest-rerunfailures is a plugin for `py.test <http://pytest.org>`_ that
4+
pytest-rerunfailures is a plugin for `pytest <https://pytest.org>`_ that
55
re-runs tests to eliminate intermittent failures.
66

77
.. image:: https://img.shields.io/badge/license-MPL%202.0-blue.svg
@@ -135,8 +135,8 @@ Compatibility
135135
Resources
136136
---------
137137

138-
- `Issue Tracker <http://github.com/pytest-dev/pytest-rerunfailures/issues>`_
139-
- `Code <http://github.com/pytest-dev/pytest-rerunfailures/>`_
138+
- `Issue Tracker <https://github.com/pytest-dev/pytest-rerunfailures/issues>`_
139+
- `Code <https://github.com/pytest-dev/pytest-rerunfailures/>`_
140140

141141
Development
142142
-----------

pytest_rerunfailures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def _set_resultlog(config, resultlog):
9292

9393

9494
# making sure the options make sense
95-
# should run before / at the begining of pytest_cmdline_main
95+
# should run before / at the beginning of pytest_cmdline_main
9696
def check_options(config):
9797
val = config.getvalue
9898
if not val("collectonly"):

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tox (https://tox.readthedocs.io/en/latest/) is a tool for running tests
22
# in multiple virtualenvs. This configuration file will run the
3-
# test suite on all supported python versions. To use it, "pip install tox"
3+
# test suite on all supported Python versions. To use it, "pip install tox"
44
# and then run "tox" from this directory.
55

66
[flake8]
@@ -15,7 +15,7 @@ envlist =
1515
minversion = 3.17.1
1616

1717
[testenv]
18-
commands = py.test test_pytest_rerunfailures.py {posargs}
18+
commands = pytest test_pytest_rerunfailures.py {posargs}
1919
deps =
2020
pytest50: pytest==5.0.*
2121
pytest51: pytest==5.1.*

0 commit comments

Comments
 (0)