diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b2260d4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - 3.6 +install: + - pip install codecov + - pip install pytest-cov + - pip install -r requirements.txt +script: + - pytest tests --cov=validator +after_success: + - codecov \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7b8f015 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +jsonschema \ No newline at end of file