summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorEddy Comyn-Platt <53045993+EddyCMWF@users.noreply.github.com>2023-02-28 12:09:54 +0000
committerGitHub <noreply@github.com>2023-02-28 12:09:54 +0000
commit85351e4a835a16fff2d64da0f203e0c523432cc1 (patch)
treefcd71a3e0a05d6d55afcf3a0194fa32f06f4ab17 /tox.ini
parent503efc0dc7cb261d659cf0d61d979eba5184b330 (diff)
Code quality tests added (#65)
* code quality checks to github actions * tox.ini options set
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 8 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 1d50849..8553cf4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,3 +14,11 @@ commands = pytest -v --pep8 --mccabe --cov=cdsapi --cov-report=html --cache-clea
[testenv:deps]
deps =
commands = python setup.py test
+
+
+[black]
+line_length=120
+[isort]
+profile=black
+[flake8]
+max-line-length = 120 \ No newline at end of file