Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance error processing #107

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/developing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ To run all of the ZSL unit tests one should start

$ tox

To run only a selected test, e.g. tests in :mod:`tests.resource.guarded_resource_test`:
To run tests in a single environment one can use

.. code-block:: console

$ tox -e 2.7-nocov

To run only a selected test, e.g. tests in
:mod:`tests.resource.guarded_resource_test`:

.. code-block:: console

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,10 @@
]

if sys.version_info < (3, 0):
requirements.extend(['enum34',
'gearman==2.0.2',
])
requirements.extend(['enum34', 'gearman==2.0.2'])
else:
requirements.extend(['python3_gearman'])


setup(name='zsl',
version='0.19.7',
description='zsl application framework for web based services',
Expand All @@ -46,6 +43,7 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Application Frameworks'
' :: '.join(['Topic', 'Software Development', 'Libraries',
'Application Frameworks'])
],
packages=find_packages('src'))