From 97dd5b32ba641c1e5f28f8c0ddeecc2d3a6691a7 Mon Sep 17 00:00:00 2001 From: Pawel Sikora Date: Thu, 29 Apr 2021 22:35:36 +0200 Subject: [PATCH] install dev requirements in travis ci --- .travis.yml | 1 + requirements_dev.txt | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 requirements_dev.txt 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