Skip to content

Instantly share code, notes, and snippets.

@hernandesbsousa
Created July 29, 2014 17:34
Show Gist options
  • Save hernandesbsousa/8f50850e7d52f09a2bf5 to your computer and use it in GitHub Desktop.
Save hernandesbsousa/8f50850e7d52f09a2bf5 to your computer and use it in GitHub Desktop.
shippable.yml
language: python
build_environment: debian wheezy
reset_minion: true
python:
- 2.7
install:
- pip install -r requirements.txt
env:
global:
- BAR=foo
- secure: encrypted_value
before_script:
- pip list
- echo $FOO
- echo $BAR
- ./tests/run --prepare
script:
- ./tests/run --run
after_script:
- ./tests/run --cleanup
notifications:
email: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment