Created
July 1, 2015 05:05
-
-
Save boertel/a6003a437c2541ec9508 to your computer and use it in GitHub Desktop.
Circle CI: circle.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| machine: | |
| python: | |
| version: 2.7.9 | |
| services: | |
| - postgresql | |
| - redis | |
| environment: | |
| DB_NAME: circle_ci | |
| DB_USER: ubuntu | |
| dependencies: | |
| post: | |
| - pip install -r dev_requirements.txt | |
| general: | |
| build_dir: ./web/ | |
| test: | |
| override: | |
| - coverage run manage.py test | |
| post: | |
| - coverage report > $CIRCLE_ARTIFACTS/coverage.txt | |
| - "pyflakes . > $CIRCLE_ARTIFACTS/pyflakes.txt || :" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment