From 5c82032bf192d6221af11807d410bfb0982c1305 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sun, 15 Apr 2018 21:46:02 -0700 Subject: [PATCH] Remove setup_tests_only.py. That file was added in 42fa2b6 without comment as to why (and renamed in ab99e65 to avoid confusing pytest); calling `python setup_test_only.py sdist` (which I guess is the only reasonable thing to do with it -- it's distutils so you can't even build a wheel out of it) doesn't create a correct "tests-only" sdist either. --- setup_tests_only.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 setup_tests_only.py diff --git a/setup_tests_only.py b/setup_tests_only.py deleted file mode 100644 index 192881f5c629..000000000000 --- a/setup_tests_only.py +++ /dev/null @@ -1,18 +0,0 @@ -from distutils.core import setup - -import os - -baseline_images = [ - 'baseline_images/%s/*' % x - for x in os.listdir('lib/matplotlib/tests/baseline_images')] - -baseline_images += [ - 'mpltest.ttf', - 'test_rcparams.rc' - ] - -setup(name='matplotlib.tests', - packages=['matplotlib.tests'], - package_dir={'matplotlib.tests': 'lib/matplotlib/tests'}, - package_data={'matplotlib.tests': baseline_images} -)