Merge pull request #2052 from nicoddemus/lint-readme

Check README.rst with rst-lint
This commit is contained in:
Ronny Pfannschmidt 2016-11-11 18:04:50 +01:00 committed by GitHub
commit 5717c71179
2 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ Please use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issue
Changelog
---------
Consult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`_ page for fixes and enhancements of each version.
Consult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`__ page for fixes and enhancements of each version.
License

View File

@ -42,19 +42,19 @@ deps=pytest-xdist>=1.13
commands=
pytest -n3 -rfsxX --runpytest=subprocess {posargs:testing}
[testenv:genscript]
commands= pytest --genscript=pytest1
[testenv:linting]
basepython = python2.7
deps =
flake8
# pygments required by rst-lint
pygments
restructuredtext_lint
check-manifest
commands =
check-manifest
flake8 pytest.py _pytest testing
rst-lint CHANGELOG.rst HOWTORELEASE.rst
rst-lint CHANGELOG.rst HOWTORELEASE.rst README.rst
[testenv:py27-xdist]
deps=pytest-xdist>=1.13