Skip to content

Commit

Permalink
🔥 pickle tests now implied by accelerator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nateraw committed Jul 31, 2020
1 parent 3fb3258 commit a82178b
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/core/test_datamodules.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,21 +97,6 @@ def test_dm_pickle_after_init(tmpdir):
pickle.dumps(dm)


def test_dm_pickle_after_setup(tmpdir):
dm = TrialMNISTDataModule()
dm.prepare_data()
dm.setup()
pickle.dumps(dm)


def test_dm_pickle_after_setup_verbose(tmpdir):
dm = TrialMNISTDataModule()
dm.prepare_data()
dm.setup('fit')
dm.setup('test')
pickle.dumps(dm)


def test_train_loop_only(tmpdir):
dm = TrialMNISTDataModule(tmpdir)

Expand Down

0 comments on commit a82178b

Please sign in to comment.