forked from madmaze/pytesseract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (43 loc) · 807 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
language: python
addons:
apt:
config:
retries: true
cache:
apt: true
pip: true
directories:
- $HOME/.cache/pre-commit
matrix:
include:
- os: linux
dist: xenial
python: 2.7
env: TOXENV=py27
name: "2.7 Xenial"
- os: linux
dist: xenial
python: 3.6
env: TOXENV=py36
name: "3.6 Xenial"
- os: linux
dist: xenial
python: 3.7
env: TOXENV=py37
name: "3.7 Xenial"
- os: linux
dist: bionic
python: 3.8
env: TOXENV=py38-pre-commit
name: "3.8 Bionic"
before_install:
- sudo apt-get install -y tesseract-ocr
- sudo apt-get install -y tesseract-ocr-fra
- tesseract --version
- tesseract --list-langs
install:
pip install tox
script:
tox
notifications:
email: false