tests: Move all data directories to data/

This cleans up the file hierarchy a bit

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson
2020-01-27 06:57:37 -05:00
parent 8fe0a208db
commit 78c8aef75e
397 changed files with 68 additions and 61 deletions
+2 -2
View File
@@ -621,8 +621,8 @@ class CheckPylint(distutils.core.Command):
# pylint: disable=protected-access
print("running codespell")
codespell_lib._codespell.main(
'-I', 'tests/codespell_dict.txt',
'--skip', '*.pyc,*.zip,*.vmdk,*.iso,*.xml', *files)
'-I', 'tests/data/codespell_dict.txt',
'--skip', '*.pyc,*.iso,*.xml', *files)
except ImportError:
print("codespell is not installed. skipping...")
except Exception as e: