You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
247 B

"""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"])

Powered by TurnKey Linux.