diff --git a/.travis.yml b/.travis.yml index b666f03..a280c38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,9 @@ sudo: false python: - 2.7 - 3.4 +- 3.7 +env: BUILDER=false +before_script: +- printenv BUILDER +- echo "test" script: py.test -v diff --git a/README.md b/README.md index dce752e..a739dcd 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# python-example \ No newline at end of file +# python-example [![Build Status](https://travis-ci.com/robertdrypa/python-example.svg?branch=master)](https://travis-ci.com/robertdrypa/python-example) diff --git a/hello.py b/hello.py index d4fb0b0..15b52c0 100644 --- a/hello.py +++ b/hello.py @@ -12,6 +12,7 @@ def say_what(): def main(): hello(say_what()) + print('iksde') return 0