summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1f0f2eeef2044f3cf55647b8fa3076bd6a0cebe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
python:
 - "2.7"
before_script:
 - sudo apt-get install libboost-filesystem1.48-dev
 - sudo apt-get install libboost-program-options1.48-dev
 - sudo apt-get install libboost-serialization1.48-dev
 - sudo apt-get install libboost-regex1.48-dev
 - sudo apt-get install libboost-test1.48-dev
 - sudo apt-get install libboost-system1.48-dev
 - sudo apt-get install libboost-thread1.48-dev
 - sudo apt-get install flex
 - autoreconf -ifv
 - ./configure
script:
 - make
 - cd python
 - python setup.py install
 - cd ..
after_script:
 - make check
 - ./tests/run-system-tests.pl
 - nosetests python/tests