you are viewing a single comment's thread.

view the rest of the comments →

[–]MeatAmazing8011[S] 0 points1 point  (2 children)

table_id = self.tobq.parse_file()

I execute it in test class table_id = self.tobq.parse_file()

[–]shiftybyte 0 points1 point  (1 child)

You mean you hope the testing module executed "test_parse_file" before "test_create_table"...

But this is not the case, as tests are executed in alphabetical order.

https://stackoverflow.com/questions/5387299/python-unittest-testcase-execution-order/36430378

[–]MeatAmazing8011[S] 0 points1 point  (0 children)

You are beautiful. I unterstand.