Move tests requirements to separate file 25/10225/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Mon, 23 Apr 2018 19:53:54 +0000 (15:53 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 25 Apr 2018 14:17:43 +0000 (10:17 -0400)
Will be used later so we can add additional tests that depend on
this file.

Change-Id: I91de27b2024050894ba5ddeef5ec849074811f9b
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
requirements-test.txt [new file with mode: 0644]
tox.ini

diff --git a/requirements-test.txt b/requirements-test.txt
new file mode 100644 (file)
index 0000000..98334e5
--- /dev/null
@@ -0,0 +1,4 @@
+-r requirements.txt
+pytest
+pytest-click
+pytest-datafiles
diff --git a/tox.ini b/tox.ini
index d1b18f9..7b7e6e4 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -9,11 +9,7 @@ envlist =
     py3
 
 [testenv]
-deps =
-    -r{toxinidir}/requirements.txt
-    pytest
-    pytest-click
-    pytest-datafiles
+deps = -r{toxinidir}/requirements-test.txt
 commands = pytest
 
 [testenv:coala]