diff --git a/.travis.yml b/.travis.yml index 205b9c5..30f92ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python script: + - pip install -r requirements_dev.txt - python setup.py install - flake8 --max-line-length=120 --ignore=D101,D104,D212,D200,E203,W293,D412,W503 mkdocs_with_confluence/ - black --check --line-length=120 mkdocs_with_confluence/ diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..4e92b9d --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,2 @@ +black +flake8