diff --git a/.travis.yml b/.travis.yml index 6de0ae78..5210bef2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,12 +18,14 @@ matrix: - name: "Unit tests" python: "3.6" install: - - python setup.py install + - python setup.py egg_info + - pip install -e . env: TEST_SUITE="unittest" - name: "Unit tests" python: "3.6" install: - - python setup.py install + - python setup.py egg_info + - pip install -e . env: TEST_SUITE="testscripts" script: ./.travis/script diff --git a/requirements.txt b/requirements.txt index ec7a1092..60706213 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,6 @@ Pillow flask tqdm inflect -pysbd bokeh==1.4.0 pysbd soundfile diff --git a/setup.py b/setup.py index 007ad5b8..d80505af 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,6 @@ requirements = { "inflect", "pysbd", "bokeh==1.4.0", - "pysbd", "soundfile", "phonemizer>=2.2.0", "nose==1.3.7",