Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Re-compile MXNet if necessary and verify the fix with the corresponding environment by running the same tests for more than 10000 passes (now can be done more easily with Automated Flaky Test Detector)
  • Submit a PR according to MXNet Development Guide Git Setup and Workflow and/or other instructions on how to contribute to MXNet.
  • Have proper title for your PR and remember to refer to the tracking issue for the flaky test in your PR
  • Address any code review comments on your PR

...

Logs usually comes with the test name like "test_xxx.test_yyy" where the "test_xxx" part is the name of the test file, and the "test_yyy" is the name of the actual test. All test files are located at under "tests/python/" folder. Since there are some test files that also import tests from some other test files for testing in specific environments, such as test_operator_gpu.py, there's the possibility of not being able to find a certain test in a test file. Under such case, please do a search within "tests/python/" to find where the actual test code is at if you want to make certain changes for debugging purpose or for fixing the flakiness.

...