Merge pull request #162020 from lucasew/fix/bpycv

python3Packages.zcs: patch to fix the test
This commit is contained in:
Renaud 2022-02-26 23:07:44 +01:00 committed by GitHub
commit a178e05ae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View file

@ -15,6 +15,10 @@ buildPythonPackage rec {
sha256 = "sha256-ZoQgAaJy3kKHLljyKA0Oo/D1kefE8X9FlsGDSNt1nPw=";
};
patches = [
./fix-test-yaml.patch
];
propagatedBuildInputs = [ yacs ];
pythonImportsCheck = [ "zcs" ];

View file

@ -0,0 +1,13 @@
diff --git a/test/test_zcs.py b/test/test_zcs.py
index e4981d3..893999f 100644
--- a/test/test_zcs.py
+++ b/test/test_zcs.py
@@ -65,7 +65,7 @@ class TestCfgNode(unittest.TestCase):
cfg = self.cfg.clone()
yamlp = pathjoin(tmpboxx(), "test.yaml")
cfg.dump(yamlp)
- cfg_dict = yaml.load(open(yamlp))
+ cfg_dict = yaml.load(open(yamlp), yaml.Loader)
cfgd = CfgNode(cfg_dict)
self.assertTrue(str(cfg.dump()) == str(cfgd.dump()))