Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
contego / home / tvault / .virtenv / lib / python2.7 / site-packages / sqlalchemy / testing / distutils_run.py
Size: Mime:
"""Quick and easy way to get setup.py test to run py.test without any
custom setuptools/distutils code.

"""
import unittest
import pytest


class TestSuite(unittest.TestCase):
    def test_sqlalchemy(self):
        pytest.main(["-n", "4", "-q"])