1a17193b35
* chore: update pre-commit versions * ci: remove old configurations * ci: copy workflow from prototorch * ci: run precommit for all files * ci: add examples CPU test * ci(test): failing example test * ci: fix workflow definition * ci(test): repeat failing example test * ci: fix workflow definition * ci(test): repeat failing example test II * ci: fix test command * ci: cleanup example test * ci: remove travis badge
16 lines
204 B
Python
16 lines
204 B
Python
"""prototorch.models test suite."""
|
|
|
|
import unittest
|
|
|
|
|
|
class TestDummy(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_dummy(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|