Commit a4ff1004 authored by Devon Carew's avatar Devon Carew

check all the dart code in the project, not just selected libraries

parent a320e712
...@@ -45,7 +45,7 @@ class _ArtifactStore { ...@@ -45,7 +45,7 @@ class _ArtifactStore {
} }
Future<String> getPath(Artifact artifact, String packageRoot) async { Future<String> getPath(Artifact artifact, String packageRoot) async {
String engineRevision = await _getEngineRevision(packageRoot); String engineRevision = await _getEngineRevision(packageRoot);
Directory cacheDir = await _cacheDir(engineRevision, packageRoot); Directory cacheDir = await _cacheDir(engineRevision, packageRoot);
if (artifact == Artifact.FlutterCompiler) { if (artifact == Artifact.FlutterCompiler) {
......
...@@ -8,10 +8,8 @@ ...@@ -8,10 +8,8 @@
set -e set -e
# Verify that the libraries are error free. # Verify that the libraries are error free.
dartanalyzer --fatal-warnings \ pub global activate tuneup
bin/build_sky_apk.dart \ pub global run tuneup check
bin/sky_server.dart \
bin/sky_tools.dart
# And run our tests. # And run our tests.
pub run test pub run test
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