Created
July 29, 2014 17:34
-
-
Save hernandesbsousa/8f50850e7d52f09a2bf5 to your computer and use it in GitHub Desktop.
shippable.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
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