Skip to content

Commit 58a3726

Browse files
committed
Fix build break
1 parent 2c42522 commit 58a3726

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ services:
77
- docker
88
dist: trusty
99
before_install:
10-
- pip install pillow
11-
install:
10+
- "pip install --upgrade setuptools"
11+
- "pip install --upgrade pip"
12+
- "pip install --upgrade pillow"
1213
script:
14+
- make test
1315
before_deploy:
1416
- sudo apt-get update -qy
1517
- sudo apt-get install -qy python3 python3-pip

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ uninstall:
2121
rm -f $(BINDIR)/imgp
2222
rm -f $(MANDIR)/imgp.1.gz
2323
rm -rf $(DOCDIR)
24+
25+
test: ;

0 commit comments

Comments
 (0)