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
|