b574bf10 |
image: quantumtinkerer/research
|
1a452225 |
|
45f10db5 |
test:
script:
|
73d05636 |
- pip install -r test-requirements.txt
|
bcecac27 |
- conda install -y -q scikit-optimize
|
b4076686 |
- py.test --verbose --cov=adaptive --cov-report term --cov-report html adaptive
artifacts:
paths:
- htmlcov
|
1a452225 |
authors check:
script:
- MISSING_AUTHORS=$(git shortlog -s HEAD | sed -e "s/^[0-9\t ]*//"| xargs -i sh -c 'grep -q "{}" AUTHORS.md || echo "{} missing from authors"')
- if [ ! -z "$MISSING_AUTHORS" ]; then { echo $MISSING_AUTHORS; exit 1; }; fi
allow_failure: true
|
91ff6476 |
check whitespace style:
script: ./check_whitespace
allow_failure: true
|