File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ Configure via tox.ini/setup.cfg/pytest.cfg
84
84
85
85
Example of use in a django project:
86
86
87
- .. code-block :: inifile
87
+ .. code-block :: ini
88
88
89
89
[pytest]
90
90
addopts = -vvv
134
134
135
135
or
136
136
137
- .. code-block :: inifile
137
+ .. code-block :: ini
138
138
139
139
[pytest]
140
140
addopts = -vvv
Original file line number Diff line number Diff line change 8
8
import pkg_resources
9
9
from pkg_resources import DistributionNotFound
10
10
11
- __version__ = '1.7.0 '
11
+ __version__ = '1.7.1 '
12
12
13
13
14
14
def get_installed_distributions ():
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
-
4
3
from setuptools import setup
5
4
from pytest_echo import __version__
6
5
7
6
setup (
8
7
name = 'pytest-echo' ,
9
8
description = 'pytest plugin with mechanisms for echoing environment '
10
9
'variables, package version and generic attributes' ,
11
- long_description = open (" README.rst" ).read (),
10
+ long_description = open (' README.rst' ).read (),
12
11
long_description_content_type = 'text/x-rst' ,
13
12
version = __version__ ,
14
13
author = 'Stefano Apostolico' ,
You can’t perform that action at this time.
0 commit comments