mirror of https://github.com/Shizmob/pydle.git
Add testing configuration.
This commit is contained in:
parent
a4f04d796f
commit
96e1b17be3
|
@ -0,0 +1,3 @@
|
|||
[run]
|
||||
branch = True
|
||||
source = pydle
|
|
@ -5,3 +5,6 @@ __pycache__
|
|||
*.swo
|
||||
|
||||
/docs/_build
|
||||
/.coverage
|
||||
/.tox
|
||||
/*.egg-info
|
||||
|
|
4
setup.py
4
setup.py
|
@ -15,7 +15,9 @@ setup(
|
|||
requires=['tornado'],
|
||||
extras_require={
|
||||
'SASL': 'pure-sasl >=0.1.6', # for pydle.features.sasl
|
||||
'Generating documentation': 'sphinx_rtd_theme' # the Sphinx theme we use
|
||||
'Generating documentation': 'sphinx_rtd_theme', # the Sphinx theme we use
|
||||
'Running tests': 'pytest', # collect and run tests
|
||||
'Getting test case coverage': 'pytest-cov' # get test case coverage
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
|
Loading…
Reference in New Issue