Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #487 from scikit-hep/jpivarski/add-tests-for-root-…
Browse files Browse the repository at this point in the history
…6.20.04

Test reading of files made in ROOT 6.20/04.
  • Loading branch information
jpivarski committed Jun 4, 2020
2 parents eb2ae1f + 46b8fcf commit 167699c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 0 deletions.
Binary file added tests/samples/sample-6.20.04-lz4.root
Binary file not shown.
Binary file added tests/samples/sample-6.20.04-lzma.root
Binary file not shown.
Binary file added tests/samples/sample-6.20.04-uncompressed.root
Binary file not shown.
Binary file added tests/samples/sample-6.20.04-zlib.root
Binary file not shown.
4 changes: 4 additions & 0 deletions tests/test_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,7 @@ def test_6_16_00(self):
def test_6_18_00(self):
for compression in "uncompressed", "zlib", "lzma", "lz4":
self.compare(uproot.open("tests/samples/sample-6.18.00-{0}.root".format(compression))["sample"].arrays())

def test_6_20_04(self):
for compression in "uncompressed", "zlib", "lzma", "lz4":
self.compare(uproot.open("tests/samples/sample-6.20.04-{0}.root".format(compression))["sample"].arrays())

0 comments on commit 167699c

Please sign in to comment.