From: Andrew Schoen Date: Thu, 4 May 2017 21:36:36 +0000 (-0500) Subject: tests: all tests must use the node fixture X-Git-Tag: v2.3.0rc1~28^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ba5c40d45d131e05bfec3bddbc66e4208ef17ada;p=ceph-ansible.git tests: all tests must use the node fixture Otherwise the logic we have for skipping tests does not work. Signed-off-by: Andrew Schoen --- 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):