summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorjvoisin2015-12-02 17:07:19 +0100
committerjvoisin2015-12-02 17:22:45 +0100
commit80ece3001895ea13d50915a5215fd47e313bab4c (patch)
treec5ede43867c5d7fe2af4178b34b0e6dc219f6aac /.travis.yml
parent3cf80e8b5d6faf410e9ad3aad77f23cf6418a587 (diff)
Remove hachoir from MAT.
This (huge) commit removes completely hachoir from MAT. Audio files are now processed with mutagen, and images with exiftool, since the main python imaging library (PIL) isn't super-great to deal with metadata (and damaged/non-standard files). Package maintainer should change the dependencies to reflect this.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 758176a..d30d5e0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,7 @@ addons:
16 - gir1.2-poppler-0.18 16 - gir1.2-poppler-0.18
17 - python-pdfrw 17 - python-pdfrw
18 - python-gi-cairo 18 - python-gi-cairo
19 - python-mutagen
19virtualenv: 20virtualenv:
20 system_site_packages: true 21 system_site_packages: true
21 22
@@ -25,12 +26,11 @@ install:
25 - pip install --user --upgrade setuptools 26 - pip install --user --upgrade setuptools
26 - pip install --user coveralls 27 - pip install --user coveralls
27 - pip install --user codecov 28 - pip install --user codecov
28 - pip install --user mutagen hachoir_core hachoir_parser
29 - popd 29 - popd
30 - python setup.py install 30 - python setup.py install
31 31
32script: 32script:
33 - coverage run --source=libmat --omit='*hachoir_editor*' setup.py test 33 - coverage run --source=libmat setup.py test
34 34
35after_success: 35after_success:
36 - coveralls 36 - coveralls