From 32b03a109da451b971bd66471ce2372e67e23846 Mon Sep 17 00:00:00 2001 From: SP Mohanty <spmohanty91@gmail.com> Date: Wed, 3 Apr 2019 06:32:53 +0200 Subject: [PATCH] Add test coverage and docs to CI --- tox.ini | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 3ff33ebe..331109ee 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37, flake8 +envlist = py36, py37, flake8, docs, coverage [travis] python = @@ -11,6 +11,16 @@ basepython = python deps = flake8 commands = flake8 flatland +[testenv:docs] +basepython = python +whitelist_externals = make +commands = make docs + +[testenv:coverage] +basepython = python +whitelist_externals = make +commands = make coverage + [testenv] setenv = PYTHONPATH = {toxinidir} -- GitLab