diff --git a/dev.yml b/dev.yml new file mode 100644 index 0000000..99e3f0f --- /dev/null +++ b/dev.yml @@ -0,0 +1,18 @@ +name: shopify-python + +type: python + +up: + - python: 3.6.1 + - custom: + name: "link development shopify-python as a package" + met?: "pip show shopify-python | grep \"Location: $(pwd)\" 1>/dev/null" + meet: "pip install -e .[dev]" +commands: + lint: + desc: "Check for Python style & syntax errors in all Python files" + run: make lint + test: + desc: "Run all tests" + run: make test +