]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: all tests must use the node fixture 1499/head
authorAndrew Schoen <aschoen@redhat.com>
Thu, 4 May 2017 21:36:36 +0000 (16:36 -0500)
committerAndrew Schoen <aschoen@redhat.com>
Thu, 4 May 2017 21:37:28 +0000 (16:37 -0500)
Otherwise the logic we have for skipping tests does not work.

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
tests/functional/tests/test_install.py

index 44436b3b86cad45e8fff515ba7cffeeb71170460..eb2eb3f0046e4e743698c6c046d90f525cd796a1 100644 (file)
@@ -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):