From 2b66d0d97b3f07338adfebbbb64b0fb2759bb82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Mon, 20 Jul 2020 15:26:05 -0400 Subject: [PATCH] Move test files into a 'tests' dir --- setup.py | 2 +- tests/__init__.py | 0 sub_test.srt => tests/sub_test.srt | 0 test.webm => tests/test.webm | Bin mpv-test.py => tests/test_mpv.py | 0 5 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 tests/__init__.py rename sub_test.srt => tests/sub_test.srt (100%) rename test.webm => tests/test.webm (100%) rename mpv-test.py => tests/test_mpv.py (100%) diff --git a/setup.py b/setup.py index 46cb277..abd0ba6 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( 'screenshot_raw': ['Pillow'] }, tests_require = ['xvfbwrapper'], - test_suite = 'mpv-test', + test_suite = 'tests', keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display', 'multimedia'], python_requires='>=3.5', diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sub_test.srt b/tests/sub_test.srt similarity index 100% rename from sub_test.srt rename to tests/sub_test.srt diff --git a/test.webm b/tests/test.webm similarity index 100% rename from test.webm rename to tests/test.webm diff --git a/mpv-test.py b/tests/test_mpv.py similarity index 100% rename from mpv-test.py rename to tests/test_mpv.py