File: .travis.yml

package info (click to toggle)
python-pairix 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 179,892 kB
  • sloc: ansic: 5,553; python: 1,207; sh: 602; perl: 464; makefile: 64
file content (35 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (3)
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
33
34
35
matrix:
  include:
    - language: c
      sudo: required
      compiler: gcc
      env:
      - VALGRIND_TEST_ON=1
      before_install:
      - sudo apt-get install -qq valgrind
      - sudo apt-get update
      - sudo apt-get install python2.7
      script:
      - make
      - sudo python setup.py install
      - python test/test.py
      - python test/test_oldindex.py
      - python test/test_oldindex2.py
      - source test/test_c.sh  # valgrind test is applied when VALGRIND_TEST_ON=1
      - source test/test_c_oldindex.sh  # test for old index
      - source test/test_c_oldindex2.sh  # test for old index
    - language: c
      sudo: required
      compiler: gcc
      env:
      - VALGRIND_TEST_ON=1
      before_install:
      - sudo apt-get install -qq valgrind
      - sudo apt-get update
      - sudo apt-get install python3
      - sudo apt-get install python3-setuptools
      script:
      - make
      - sudo python3 setup.py install
      - python3 test/test.py
      - python3 test/test_oldindex.py