cetsai commented on a change in pull request #11991: [MXNET-644] Automated flaky test detection URL: https://github.com/apache/incubator-mxnet/pull/11991#discussion_r208756735
########## File path: tools/flaky_tests/check_branch.py ########## @@ -0,0 +1,142 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +""" This script is used to automate flaky test detection on CI + +This module calls each of the components to automate the detection of +flaky tests. Currently, each test is given an equal number of runs +such that all tests being checked can be run within the time budget. +""" +import logging +import time +import os +import subprocess +import json + +import flakiness_checker +import diff_collator +import dependency_analyzer + +LOGGING_FILE = os.path.join(os.path.dirname(__file__), "results.log") +TESTS_DIRECTORY = "tests/python" +PROFILING_TRIALS = 10 +TIME_BUDGET = 5400 + +logger = logging.getLogger(__name__) + +fh = logging.FileHandler(LOGGING_FILE) +fh.setLevel(logging.INFO) +fh.setFormatter(logging.Formatter("%(asctime)s - %(message)s")) +logger.addHandler(fh) + +def select_tests(changes): + """returns tests that are dependent on given changes + """ + top = subprocess.check_output(["git", "rev-parse", "--show-toplevel"]) + top = top.decode("utf-8").splitlines()[0] + deps = dependency_analyzer.find_dependents(changes, top) + + return [(filename, test) + for filename in deps.keys() + for test in deps[filename] + if test.startswith("test_")] + + +def calculate_test_trials(tests): + """Calculate the number of times each test should be run + + Currently, each test is run the same number of times, where the + number is based on the time it takes to run each test once. + """ + def time_test(test): + start = time.time() + flakiness_checker.run_test_trials( + test[0], test[1], PROFILING_TRIALS + 1) + end = time.time() + profile_time = end - start + + start = time.time() + flakiness_checker.run_test_trials(test[0], test[1], 1) + end = time.time() + setup_time = end - start + + actual_time = profile_time - setup_time + return actual_time / PROFILING_TRIALS + + total_time = 0.0 + for t in tests: + total_time += time_test(t) + + n = int(TIME_BUDGET / total_time) + logger.debug("total_time: %f | num_trials: %d", total_time, n) + return [(t, n) for t in tests] + + +def check_tests(tests): + """Check given tests for flakiness""" + flaky, nonflaky = [], [] + tests = calculate_test_trials(tests) + + for t, n in tests: + res = flakiness_checker.run_test_trials(t[0], t[1], n) + + if res != 0: + flaky.append(t) + else: + nonflaky.append(t) + + return flaky, nonflaky + + +def output_results(flaky, nonflaky): + print("Following tests failed flakiness checker:") Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services