From ba5c40d45d131e05bfec3bddbc66e4208ef17ada Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 4 May 2017 16:36:36 -0500 Subject: [PATCH] tests: all tests must use the node fixture Otherwise the logic we have for skipping tests does not work. Signed-off-by: Andrew Schoen --- tests/functional/tests/test_install.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/functional/tests/test_install.py b/tests/functional/tests/test_install.py index 44436b3b8..eb2eb3f00 100644 --- a/tests/functional/tests/test_install.py +++ b/tests/functional/tests/test_install.py @@ -1,11 +1,12 @@ import pytest + class TestInstall(object): - def test_ceph_dir_exists(self, File): + def test_ceph_dir_exists(self, File, node): assert File('/etc/ceph').exists - def test_ceph_dir_is_a_directory(self, File): + def test_ceph_dir_is_a_directory(self, File, node): assert File('/etc/ceph').is_directory def test_ceph_conf_exists(self, File, node): -- 2.39.5