From 41bbac8f8a47a401e1aa20cbd00dd3310acd555a Mon Sep 17 00:00:00 2001 From: mvaradi Date: Fri, 12 Oct 2018 17:26:24 +0100 Subject: [PATCH] Requirements and Travis config --- .travis.yml | 11 +++++++++++ requirements.txt | 1 + 2 files changed, 12 insertions(+) create mode 100644 .travis.yml create mode 100644 requirements.txt 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