-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
32 lines (28 loc) · 918 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
# Handle git submodules yourself
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
before_script:
export PYTHONPATH=$PYTHONPATH:/home/travis/build/pannous/angle/core/
export PYTHONPATH=$PYTHONPATH:/home/travis/build/pannous/angle/kast/
export PYTHONPATH=$PYTHONPATH:/home/travis/build/pannous/angle/tests/
language: python
python:
# - "2.6"
# - "2.7"
# - "3.2"
# - "3.3"
# - "3.4"
- "nightly"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
# script: nosetests
# script: cd core; py.test ../tests
script: PYTHONPATH=$PYTHONPATH:./angle/ pytest tests
# script: py.test #--cov-report term-missing --cov app -v
#script: python tests.py
#script: make test