Unverified Commit 28906472 authored by Dan Field's avatar Dan Field Committed by GitHub

Fix windows, exclude widgets from others (#36197)

parent 102ab1e6
......@@ -391,7 +391,8 @@ Future<void> _runTests() async {
final List<String> tests = Directory(path.join(flutterRoot, 'packages', 'flutter', 'test'))
.listSync(followLinks: false, recursive: false)
.whereType<Directory>()
.map((Directory dir) => 'test/${path.basename(dir.path)}/')
.where((Directory dir) => dir.path.endsWith('widgets') == false)
.map((Directory dir) => path.join('test', path.basename(dir.path)) + path.separator)
.toList();
print('Running tests for: ${tests.join(';')}');
......
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