Commit 30697911 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #6863 from ethereum-optimism/08-17-chore_indexer_Disable_flaky_indexer_tests

chore(indexer): Disable flaky indexer tests
parents 6f36f623 7c21ff33
......@@ -56,7 +56,11 @@ log = logging.getLogger(__name__)
def main():
patterns = sys.argv[1].split(',')
patterns = patterns + REBUILD_ALL_PATTERNS
# temporarily only run indexer tests if indexer is changed because the tests are flaky
if len(patterns) != 1 or patterns[0] != "indexer":
patterns = patterns + REBUILD_ALL_PATTERNS
fp = os.path.realpath(__file__)
monorepo_path = os.path.realpath(os.path.join(fp, '..', '..'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment