Skip to content

Commit

Permalink
unskip some DSEC tests
Browse files Browse the repository at this point in the history
  • Loading branch information
biphasic committed Oct 17, 2023
1 parent 7c59dc2 commit b90f3db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/test_dsec.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_test_split():
assert len(dataset) == 12


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_optical_flow_subset():
with pytest.warns():
dataset = tonic.datasets.DSEC(
Expand All @@ -36,7 +36,7 @@ def test_optical_flow_subset():
assert len(targets) == 1


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_data_selection():
dataset = tonic.datasets.DSEC(
save_to="data", split="thun_00_a", data_selection="image_timestamps"
Expand All @@ -46,7 +46,7 @@ def test_data_selection():
assert len(targets) == 0


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_multi_data_selection():
dataset = tonic.datasets.DSEC(
save_to="data",
Expand All @@ -58,7 +58,7 @@ def test_multi_data_selection():
assert len(targets) == 0


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_target_selection():
dataset = tonic.datasets.DSEC(
save_to="data",
Expand All @@ -71,7 +71,7 @@ def test_target_selection():
assert len(targets) == 1


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_target_multiselection():
dataset = tonic.datasets.DSEC(
save_to="data",
Expand All @@ -84,7 +84,7 @@ def test_target_multiselection():
assert len(targets) == 2


@pytest.mark.skip("Data not available from CI server...")
# @pytest.mark.skip("Data not available from CI server...")
def test_optical_flow():
dataset = tonic.datasets.DSEC(
save_to="data",
Expand Down

0 comments on commit b90f3db

Please sign in to comment.