summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py3
-rw-r--r--tox.ini6
2 files changed, 3 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 150e8c3b..2380be5f 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
# You should have received a copy of the GNU Lesser General Public License along
# with astroid. If not, see <http://www.gnu.org/licenses/>.
"""Setup script for astroid."""
-from setuptools import setup, find_packages
+from setuptools import setup
pkginfo = 'astroid/__pkginfo__.py'
@@ -41,6 +41,7 @@ def install():
url = web,
include_package_data = True,
install_requires = install_requires,
+ # find_packages() does not work on drone.io (or maybe inside venv).
packages = ['astroid', 'astroid.tests'],
)
diff --git a/tox.ini b/tox.ini
index 89dda8d0..f35e0d53 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,8 +7,4 @@ deps =
logilab-common
six
changedir = {envsitepackagesdir}/astroid/tests
-commands =
- /bin/pwd
- /bin/ls -l ..
- /bin/ls -l
- python -Wi -m unittest discover -v -p "unittest*.py"
+commands = python -Wi -m unittest discover -v -p "unittest*.py"