Skip to content

Commit

Permalink
fixing unit tests script
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-stokes committed Apr 24, 2015
1 parent efb1af9 commit a9c4360
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@


class MyTestCase(unittest.TestCase):

@unittest.skip("testing skipping")
def test_something(self):
self.assertEqual(True, False, "Test not implemented yet")

Expand Down
2 changes: 1 addition & 1 deletion unittests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'operations_tests.router_algorithms_tests.test_basic_dijkstra_routing',
'operations_tests.router_algorithms_tests.test_generic_router',
'operations_tests.routing_info_algorithms_tests.'
'test_basic_routing_info_allocator'
'test_basic_routing_info_allocator',
'operations_tests.routing_info_algorithms_tests.'
'test_malloc_routing_info_allocator']

Expand Down

0 comments on commit a9c4360

Please sign in to comment.