Skip to content

Commit 5bc8a11

Browse files
committed
Try to add travis
1 parent 0e343d7 commit 5bc8a11

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: python
2+
3+
python:
4+
- "2.7"
5+
- "3.4"
6+
7+
install: false
8+
9+
branches:
10+
except:
11+
- develop
12+
13+
before_script:
14+
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
15+
- sudo apt-get update -q
16+
- sudo apt-get install python-fontforge -y
17+
18+
script: ./build.sh

build.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
set -x
3+
4+
find . -name "*.py" -print -exec python -m py_compile {} \;
5+

0 commit comments

Comments
 (0)