Initial Configuration Push

This commit is contained in:
CCOSTAN
2016-10-11 16:42:06 +00:00
parent b83eeadfcb
commit 5127bc2109
2145 changed files with 298464 additions and 0 deletions

View File

@@ -0,0 +1,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"])