mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-04 06:48:27 -04:00
cca03097f4
sqlalchemy/orm, sqlalchemy/event, sqlalchemy/testing
12 lines
230 B
Python
12 lines
230 B
Python
"""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()
|