File: circle.yml

package info (click to toggle)
python-pbcore 2.1.2%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,476 kB
  • sloc: python: 13,393; xml: 2,504; makefile: 232; sh: 66
file content (18 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
machine:
  python:
    version: 2.7.6

dependencies:
  # We need to manually build (and cache) a more modern libhdf5 than
  # ubuntu precise makes available via apt---there are bugs that
  # affect us, in libhdf5 1.8.4
  cache_directories:
    - .circleci/prefix
  pre:
    - (cd .circleci && bash installHDF5.sh)
    - HDF5_DIR=$PWD/.circleci/prefix pip install -r requirements.txt
    - HDF5_DIR=$PWD/.circleci/prefix pip install -r requirements-dev.txt
    
test:
  override:
    - make test # Run doctests in addition to the usual unit tests