Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Give better warning to developers for tests that are blocked for CI
  • Loading branch information
nturgut committed Nov 10, 2020
commit 9b5f83021872072a37ae1c1435b5bf8c7e80e8a0
4 changes: 3 additions & 1 deletion lib/web_ui/dev/integration_tests_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ class IntegrationTestsManager {
entities.singleWhere((f) => pathlib.basename(f.path) == targetTest);
final String basename = pathlib.basename(file.path);
if (blockedTests.contains(basename)) {
print('INFO: Test $basename do not run on CI environments.');
print('INFO: Test $basename do not run on CI environments. Please '
'remove it from the blocked tests list if you want to enable this '
'test on CI.');
}
e2eTestsToRun.add(basename);
}
Expand Down