diff --git a/week05-testing/.travis.yml b/week05-testing/.travis.yml new file mode 100644 index 0000000..c40edc6 --- /dev/null +++ b/week05-testing/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "3.7" + - "3.8" +# command to install dependencies +install: + - pip install requests pyyaml pytest pytest-cov +# command to run tests +script: + - pytest --cov \ No newline at end of file