diff --git a/.travis.yml b/.travis.yml index 54cb45e029..ec76e75c48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,8 @@ before_install: - sudo apt-get -qq update - make deps-ubuntu install: - - make deps-pip deps-pip-test -script: + - pip -r requirements_dev.txt + - pip -r requirements_test.txt - make assets - - export TESSDATA_PREFIX="/usr/share/tesseract-ocr/4.00/tessdata"; make test TESSDATA_PREFIX="/usr/share/tesseract-ocr/4.00/tessdata" +script: + - make test diff --git a/requirements.txt b/requirements.txt index dc4cce9f9b..d0720d0cea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ click requests --e git+https://github.com/smarnach/pyexiftool.git#egg=pyexiftool +pyexiftool lxml Pillow numpy diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000000..004831d502 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,11 @@ +-e git+https://github.com/smarnach/pyexiftool.git#egg=pyexiftool + +click +requests +lxml +Pillow +numpy +opencv-python +Flask +jsonschema +pyyaml