summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 47f570fb4e0668c9f8fa2e2a81d6c73d42dd7adc (plain)
1
2
3
4
5
6
7
8
9
10
11
language: python
python:
  - "3.6"

install:
  - pip install Pillow

# command to run our tests
script:
  - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then python .tests/check_repo.py; fi'
  - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then python .tests/check_repo.py  $(git diff --name-only HEAD~ | grep / | cut -d / -f1 | sort | uniq); fi'