summaryrefslogtreecommitdiff
path: root/test/test_z_data.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2014-11-23 11:31:53 +0100
committerAnthon van der Neut <anthon@mnt.org>2014-11-23 11:31:53 +0100
commitd709fb8be80a54e793f7eb5a148cd1fa5103933c (patch)
treee50bc28652738b8d7940b85eb90d2fd828dde932 /test/test_z_data.py
parent259d7c875079984ed502912fe77868f5b435e36b (diff)
downloadruamel.yaml-d709fb8be80a54e793f7eb5a148cd1fa5103933c.tar.gz
- change install so that you can include ruamel.yaml instead of ruamel.yaml.py
- add "yaml" utility with initial subcommands (test rt, from json)
Diffstat (limited to 'test/test_z_data.py')
-rw-r--r--test/test_z_data.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_z_data.py b/test/test_z_data.py
index c221c76..19d454c 100644
--- a/test/test_z_data.py
+++ b/test/test_z_data.py
@@ -20,12 +20,11 @@ def test_data():
test_appliance.run(collections, args)
-@pytest.mark.skipif(not ruamel.yaml.__with_libyaml__,
- reason="no libyaml")
+@pytest.mark.skipif(not ruamel.yaml.__with_libyaml__,
+ reason="no libyaml")
def test_data_ext():
collections = []
if ruamel.yaml.__with_libyaml__:
import test_yaml_ext
collections.append(test_yaml_ext)
test_appliance.run(collections, args)
-