From fd84c5498c933ea4175eca8357155826bdbcf14f Mon Sep 17 00:00:00 2001 From: christaborium Date: Fri, 16 Mar 2018 21:33:32 -0700 Subject: [PATCH] Remove pylama invocations/deps --- .github/CONTRIBUTING.md | 1 + .gitignore | 1 + tox.ini | 8 ++++---- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 7fd95a1..29a931e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -12,6 +12,7 @@ 1. Where appropriate (all python code) unit tests are required. JS unit tests are encouraged but at the moment are not well instrumented. 2. Coverage must meet or exceed percentage set in the tox file (usually 98%) 3. Massive changes should be proposed as issues before any work is done (e.g. I don't like jquery - let's switch to X will be closed if a PR is submitted without discussion). +4. Create a README.md with as much useful info as possible in your services module (e.g. `/services//README.md`) ### If adding new chart types, examples, etc... you must: diff --git a/.gitignore b/.gitignore index 07dcdd8..6f8642d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # ---------- Misc --------- # +/**/geckodriver.log *.sublime-* *.log *.pyc diff --git a/tox.ini b/tox.ini index 44fc8ce..8d954a4 100644 --- a/tox.ini +++ b/tox.ini @@ -7,14 +7,14 @@ usedevelop=True deps=pytest pytest-cov pyquery - pylama -commands=pytest -s -v --cov-report term --cov=flask_jsondash tests --pylama + requests_mock +commands=pytest -s -v --cov-report term --cov=flask_jsondash tests [testenv:py3.5] -commands=python3.5 -m pytest -s -v --cov-report term --cov=flask_jsondash tests --pylama +commands=python3.5 -m pytest -s -v --cov-report term --cov=flask_jsondash tests [testenv:py3.6] -commands=python3.6 -m pytest -s -v --cov-report term --cov=flask_jsondash tests --pylama +commands=python3.6 -m pytest -s -v --cov-report term --cov=flask_jsondash tests [flake8] max-line-length=80