Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Create wercker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed May 14, 2015
1 parent ad8ccbb commit 7c2aadf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions wercker.yml
@@ -0,0 +1,29 @@
box: wercker/python
# Build definition
build:
# The steps that will be executed on build
steps:
# A step that sets up the python virtual environment
- virtualenv:
name: setup virtual environment
install_wheel: false # Enable wheel to speed up builds (experimental)

# # Use this virtualenv step for python 3.2
# - virtualenv
# name: setup virtual environment
# python_location: /usr/bin/python3.2

# A step that executes `pip install` command.
- pip-install

# # This pip-install clears the local wheel cache
# - pip-install:
# clean_wheel_dir: true

# A custom script step, name value is used in the UI
# and the code value contains the command that get executed
- script:
name: echo python information
code: |
echo "python version $(python --version) running"
echo "pip version $(pip --version) running"

0 comments on commit 7c2aadf

Please sign in to comment.