summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/distutils_run.py
blob: 38de8872cb93be8298f4d0f17543c70cd46b5c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""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"])