Commit ba5da451 by Bertrand Marron Committed by Jesse Zoldak

Add circle configuration

parent 009e8a10
dependencies:
override:
- pip install setuptools==0.6c11
- pip install distribute==0.6.49
- pip install pbr==0.9.0
- paver install_prereqs
test:
override:
- ./scripts/circle.sh:
parallel: true
#!/usr/bin/env sh
case $CIRCLE_NODE_INDEX in
0) paver test_lib --extra_args="--with-flaky" --cov_args="-p" ;;
1) paver test_system -s cms --extra_args="--with-flaky --with-xunit" --cov_args="-p" ;;
2) paver test_system -s lms --extra_args="--with-flaky --with-xunit" --cov_args="-p" ;;
esac
RET=$?
cp -r reports/. $CIRCLE_TEST_REPORTS
exit $RET
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment