diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-24 18:52:25 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-24 18:52:25 -0400 |
| commit | 5ab9ab7940a683231180703154e5753f3ce105b9 (patch) | |
| tree | 95a44593575cf051a9e4a846fc9b2df8d3473fb5 /lib/sqlalchemy | |
| parent | 3180f15837cc5b62f1a5798c112fe1c74898103a (diff) | |
| download | sqlalchemy-5ab9ab7940a683231180703154e5753f3ce105b9.tar.gz | |
- remove "distutils-only" mode, use setuptools only
- add first-class "pytest" runner to setup.py, fixes #3489
- remove references to setuptools Feature and mark that "--without-cextensions"
is removed, fixes #3500
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/testing/distutils_run.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/sqlalchemy/testing/distutils_run.py b/lib/sqlalchemy/testing/distutils_run.py deleted file mode 100644 index 38de8872c..000000000 --- a/lib/sqlalchemy/testing/distutils_run.py +++ /dev/null @@ -1,11 +0,0 @@ -"""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"]) |
