From 319aeba9694d9032d45ba9068c35b8fcd676084e Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Fri, 24 Jan 2020 18:41:14 +0000 Subject: [PATCH] add tensorflow without keras CI test --- tox.ini | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 39ce01c5..c4bfc4bd 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ [tox] # deprecation warning: py{26,32,33,34} -envlist = py{26,27,33,34,35,36,37,py,py3}, flake8, setup.py, perf +envlist = py{26,27,33,34,35,36,37,py,py3}, tf-no-keras, perf, flake8, setup.py [coverage] deps = @@ -69,6 +69,13 @@ commands = {[extra]commands} deps = {[extra]deps} commands = {[extra]commands} +[testenv:tf-no-keras] +deps = + {[extra]deps} + tensorflow +commands = + nosetests --with-timer tqdm/tests/tests_keras.py -d -v + [testenv:perf] deps = nose