OpenMDAO / testflo

A simple python testing framework that can run unit tests under MPI (or not).
Other
3 stars 7 forks source link

Remove extra setup/teardown calls. #121

Closed naylor-b closed 2 months ago

naylor-b commented 2 months ago

Summary

I realized recently that when I added support for subtests by just letting the TestCase object handle running the test (which also handles setup and teardown), I forgot to remove the calls to setup/teardown that we were making on our side.

Backwards incompatibilities

None

New Dependencies

None

naylor-b commented 2 months ago

Nevermind. The calls I thought were extra calls to setUp/tearDown were actually calls to setUpClass/tearDownClass, so previous code was fine.

swryan commented 2 months ago

we can close #74, or is that still an issue?