Skip to content

Commit

Permalink
Added smoketest for datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
erikwijmans committed Oct 21, 2018
1 parent 1b19cbf commit ca729e7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_dataloaders.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from pointnet2 import data

def test_modelnet40():
dset = data.ModelNet40Cls(1024)
dset[0]

def test_semseg():
dset = data.Indoor3DSemSeg(1024)
dset[0]

0 comments on commit ca729e7

Please sign in to comment.