Skip to content

Instantly share code, notes, and snippets.

@flenter
Created November 7, 2013 18:58
Show Gist options
  • Save flenter/7359989 to your computer and use it in GitHub Desktop.
Save flenter/7359989 to your computer and use it in GitHub Desktop.
Wercker.yml for django project, testing rs_open_auth only
box: wercker/python
services:
- wercker/postgresql # Don't forget to add your databases as a service
# Build definition
build:
# The steps that will be executed on build
steps:
- virtualenv:
name: setup virtual environment
- pip-install:
requirements_file: "requirements.txt" # Optional argument.
# A custom script step, name value is used in the UI
# and the code value contains the command that get executed
- script:
name: test
code: |
python manage.py test rs_open_auth -v2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment