diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..f4ad01e --- /dev/null +++ b/.coveragerc @@ -0,0 +1,8 @@ +[run] +branch = True +source = + . +omit = + .tox/* + setup.py + tests/* \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..99ae213 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +sudo: false +language: python +# cache package wheels (1 cache per python version) +cache: pip +python: 3.6 + +install: + - pip install .[test] + +script: + - python -m pytest tests/ \ No newline at end of file