Skip to content

Commit

Permalink
Remove pylama invocations/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
christabor committed Mar 17, 2018
1 parent e9162c9 commit fd84c54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/CONTRIBUTING.md
Expand Up @@ -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/<SERVICE>/README.md`)

### If adding new chart types, examples, etc... you must:

Expand Down
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
# ---------- Misc --------- #

/**/geckodriver.log
*.sublime-*
*.log
*.pyc
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Expand Up @@ -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
Expand Down

0 comments on commit fd84c54

Please sign in to comment.