Put in (and then comment out) hooks to run unittests via setup.py.
This commit is contained in:
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='swift',
@@ -23,7 +23,10 @@ setup(
license='Apache License (2.0)',
author='OpenStack, LLC.',
url='https://launchpad.net/swift',
packages=['swift','swift.common'],
packages=find_packages(exclude=['tests','bin']),
#Uncomment this once unittests work without /etc
#Also, figure out how to make this only run unit tests
#test_suite = 'nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.