diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3228711 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - '3.6' + - '3.7' + +install: + - sudo apt-get update + - sudo apt-get install build-essential curl apt-transport-https unixodbc-dev + - pip install -r requirements.txt + - pip install . + +script: + - flake8 etlhelper test + - pytest -vvs -rst test/unit +