@@ -6,7 +6,7 @@ versions](https://img.shields.io/pypi/pyversions/pytest-echo.svg)](https://pypi.
66[ ![ tests] ( https://github.com/pytest-dev/pytest-echo/actions/workflows/tests.yml/badge.svg )] ( https://github.com/pytest-dev/pytest-echo/actions/workflows/tests.yml )
77[ ![ Downloads] ( https://static.pepy.tech/badge/pytest-echo/month )] ( https://pepy.tech/project/pytest-echo )
88[ ![ Coverage] ( https://codecov.io/gh/pytest-dev/pytest-echo/branch/develop/graph/badge.svg )] ( https://codecov.io/gh/pytest-dev/pytest-echo )
9- [ ![ Documentation] ( https://readthedocs.org/projects /pytest-echo/badge/?version=latest )] ( https://pytest-echo.readthedocs.io/en/latest / )
9+ [ ![ Documentation] ( https://github.com/pytest-dev /pytest-echo/actions/workflows/docs.yml/badge.svg )] ( https://github.com/ pytest-dev/pytest-echo / )
1010
1111Print environment variables, package version and generic attributes,
1212as they are at the beginning of the test.
@@ -15,15 +15,15 @@ Useful in the continuous integration to dump test
1515configuration/environment and or to check if attributes are properly set
1616(ie. you change environment with ` os.environ ` )
1717
18- # Install
18+ ## Install
1919
2020install via::
2121
2222 pip install pytest-echo
2323
24- # Examples
24+ ## Examples
2525
26- ## Dump environment variables
26+ ### Dump environment variables
2727
2828 $ pytest --echo-env=HOME
2929 ============================= test session starts =========================
@@ -32,7 +32,7 @@ install via::
3232 HOME: /Users/sax
3333 plugins: echo, pydev, cov, cache, django
3434
35- ## Dump package version
35+ ### Dump package version
3636
3737 $ pytest --echo-version=pytest_echo
3838 ============================= test session starts =========================
@@ -48,7 +48,7 @@ install via::
4848> level code is executed. This should be not an issue as no problematic code
4949> should be present in the first level of the package
5050
51- ## Dump attributes
51+ ### Dump attributes
5252
5353 $ pytest --echo-attr=django.conf.settings.DEBUG
5454 ============================= test session starts =========================
@@ -63,7 +63,7 @@ install via::
6363
6464> [ !NOTE] You cannot dump callable result.
6565
66- ## Configure via tox.ini/setup.cfg/pytest.cfg
66+ ### Configure via tox.ini/setup.cfg/pytest.cfg
6767
6868Example of use in a django project:
6969
@@ -100,7 +100,7 @@ Example of use in a django project:
100100 .............
101101 14 passed in 4.95 seconds
102102
103- ## Globbing
103+ ### Globbing
104104
105105Starting from version 1.5, is possible to glob packages version and environment variables,
106106as:
0 commit comments