From ffcbd38b812b0332014189cbfeae1bd12cbb9c4a Mon Sep 17 00:00:00 2001 From: chenfeiyu Date: Mon, 25 Nov 2019 10:52:49 +0000 Subject: [PATCH] rename test --- examples/train.sh | 1 + setup.py | 2 +- {test => tests}/test_ljspeech.py | 0 {test => tests}/test_vctk.py | 0 4 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 examples/train.sh rename {test => tests}/test_ljspeech.py (100%) rename {test => tests}/test_vctk.py (100%) diff --git a/examples/train.sh b/examples/train.sh new file mode 100644 index 0000000..c1e2ee7 --- /dev/null +++ b/examples/train.sh @@ -0,0 +1 @@ +# train deepvoice 3 with ljspeech (just a place holder now) \ No newline at end of file diff --git a/setup.py b/setup.py index 5d4edbe..627e2be 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup_info = dict( ], # Package info - packages=find_packages(exclude=('test', 'test.*')), + packages=find_packages(exclude=('tests', 'test.*')), zip_safe=True, ) diff --git a/test/test_ljspeech.py b/tests/test_ljspeech.py similarity index 100% rename from test/test_ljspeech.py rename to tests/test_ljspeech.py diff --git a/test/test_vctk.py b/tests/test_vctk.py similarity index 100% rename from test/test_vctk.py rename to tests/test_vctk.py