Blame view
.travis.yml
517 Bytes
|
b6f10e7c7
|
1 |
# Using python for running the tests, using `cram` test framework. |
|
9948f3ed0
|
2 |
language: python |
|
b6f10e7c7
|
3 4 |
# Python version to run tests with. |
|
9948f3ed0
|
5 6 |
python:
- "2.7"
|
|
b6f10e7c7
|
7 |
|
|
56de699f2
|
8 |
before_script: |
|
b6f10e7c7
|
9 10 |
# Show the git version being used to test.
|
|
56de699f2
|
11 |
- "git --version" |
|
b6f10e7c7
|
12 13 |
# Install zsh.
|
|
d36336392
|
14 |
- "sudo apt-get install zsh" |
|
b6f10e7c7
|
15 16 |
# Test config for git.
|
|
d36336392
|
17 18 |
- "git config --global user.name test"
- "git config --global user.email test@test.test"
|
|
b6f10e7c7
|
19 20 |
# Install python requirements. |
|
9948f3ed0
|
21 |
install: "pip install -r requirements.txt --use-mirrors" |
|
b6f10e7c7
|
22 23 |
# Run the tests. |
|
ebc6cef86
|
24 |
script: "make tests" |