Skip to content

Commit 18e4458

Browse files
committed
Merge branch 'compressed-lists' of https://github.com/biocpy/rds2py into compressed-lists
2 parents 5978c52 + 915b6f0 commit 18e4458

File tree

11 files changed

+3
-21
lines changed

11 files changed

+3
-21
lines changed

tests/test_atomics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
from biocutils import BooleanList, FloatList, IntegerList, StringList

tests/test_delayedmatrices.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
__copyright__ = "jkanche"
88
__license__ = "MIT"
99

10+
1011
@pytest.mark.skip(reason="delayedarray uses full file paths. this should be run locally.")
1112
def test_read_h5sparse():
1213
array = read_rds("tests/data/h5sparse.rds")

tests/test_dict.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
__author__ = "jkanche"

tests/test_factors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
__author__ = "jkanche"

tests/test_frames.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42
from biocframe import BiocFrame
53

tests/test_granges.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
from genomicranges import GenomicRanges, GenomicRangesList

tests/test_mae.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
from multiassayexperiment import MultiAssayExperiment

tests/test_matrices.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42
import numpy as np
53
from scipy import sparse as sp
@@ -17,6 +15,7 @@ def test_read_s4_matrix_dgc():
1715
assert array is not None
1816
assert isinstance(array, sp.spmatrix)
1917

18+
2019
def test_read_s4_matrix_dgc_with_rownames():
2120
array = read_rds("tests/data/matrix_with_row_names.rds")
2221

@@ -34,6 +33,7 @@ def test_read_s4_matrix_dgc_with_bothnames():
3433
assert len(array.dimnames[0]) == 100
3534
assert len(array.dimnames[1]) == 10
3635

36+
3737
def test_read_s4_matrix_dgt():
3838
array = read_rds("tests/data/s4_matrix_dgt.rds")
3939

tests/test_rle.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

5-
from biocutils import BooleanList, FloatList, IntegerList, StringList
63

74
__author__ = "jkanche"
85
__copyright__ = "jkanche"

tests/test_sce.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import pytest
2-
31
from rds2py import read_rds
42

53
from singlecellexperiment import SingleCellExperiment

0 commit comments

Comments
 (0)