diff options
author | Ashley Whetter <AWhetter@users.noreply.github.com> | 2019-10-15 01:49:26 -0700 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-10-15 10:49:26 +0200 |
commit | 2f288598de485c6af25788fc917139b48c31c474 (patch) | |
tree | 3b52b2994c90018a2db2854adca0928c4bfe1162 /setup.py | |
parent | 73babe3d536ffc4da94e59c705eb6a8c3e5822ef (diff) | |
download | astroid-git-2f288598de485c6af25788fc917139b48c31c474.tar.gz |
Moved tests out of package directory (#704)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ def install(): python_requires=">=3.5.*", install_requires=install_requires, extras_require=extras_require, - packages=find_packages(exclude=["astroid.tests"]) + ["astroid.brain"], + packages=find_packages() + ["astroid.brain"], setup_requires=["pytest-runner"], test_suite="test", tests_require=["pytest"], |