From 4509201b00c1eaca3079b4e813301a784d607c49 Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Tue, 30 Jun 2015 13:44:56 -0700 Subject: [PATCH] [RM-12151] Enable tests for disk subcommands Signed-off-by: Travis Rhoden --- ceph_deploy/tests/parser/test_disk.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ceph_deploy/tests/parser/test_disk.py b/ceph_deploy/tests/parser/test_disk.py index 2483192..40f8bfc 100644 --- a/ceph_deploy/tests/parser/test_disk.py +++ b/ceph_deploy/tests/parser/test_disk.py @@ -28,7 +28,6 @@ class TestParserDisk(object): out, err = capsys.readouterr() assert 'invalid choice' in err - @pytest.mark.skipif(reason="http://tracker.ceph.com/issues/12151") def test_disk_list_help(self, capsys): with pytest.raises(SystemExit): self.parser.parse_args('disk list --help'.split()) @@ -52,7 +51,6 @@ class TestParserDisk(object): hosts = [x[0] for x in args.disk] assert hosts == hostnames - @pytest.mark.skipif(reason="http://tracker.ceph.com/issues/12151") def test_disk_prepare_help(self, capsys): with pytest.raises(SystemExit): self.parser.parse_args('disk prepare --help'.split()) @@ -76,7 +74,6 @@ class TestParserDisk(object): args = self.parser.parse_args('disk prepare --fs-type ext4 host1:sdb'.split()) assert args.fs_type == "ext4" - @pytest.mark.skipif(reason="http://tracker.ceph.com/issues/12151") def test_disk_prepare_fstype_invalid(self, capsys): with pytest.raises(SystemExit): self.parser.parse_args('disk prepare --fs-type bork host1:sdb'.split()) @@ -117,7 +114,6 @@ class TestParserDisk(object): hosts = [x[0] for x in args.disk] assert hosts == hostnames - @pytest.mark.skipif(reason="http://tracker.ceph.com/issues/12151") def test_disk_activate_help(self, capsys): with pytest.raises(SystemExit): self.parser.parse_args('disk activate --help'.split()) @@ -141,7 +137,6 @@ class TestParserDisk(object): hosts = [x[0] for x in args.disk] assert hosts == hostnames - @pytest.mark.skipif(reason="http://tracker.ceph.com/issues/12151") def test_disk_zap_help(self, capsys): with pytest.raises(SystemExit): self.parser.parse_args('disk zap --help'.split()) -- 2.47.3