diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..62ee16e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python + +os: + - linux + +install: + - pip install pytest coverage + +before_script: + - test -d ./lessons/best-practices + - test -f ./lessons/best-practices/examples.py + - test -f ./lessons/best-practices/test_examples.py + +script: + - coverage run -m pytest + +after_success: + - coverage report