openmedialibrary_platform_w.../Lib/site-packages/sqlalchemy/testing/distutils_run.py

12 lines
247 B
Python
Raw Normal View History

2016-01-31 14:44:46 +00:00
"""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"])