mirror of https://github.com/AMT-Cheif/drift.git
Don't run coverage on CI builds
We regularly run out of memory
This commit is contained in:
parent
fc2d98e07f
commit
420b1090cc
|
@ -2,6 +2,8 @@
|
||||||
container:
|
container:
|
||||||
image: "google/dart:latest"
|
image: "google/dart:latest"
|
||||||
|
|
||||||
|
# We're currently not running tests with coverage because the free cirrus containers run out of memory :(
|
||||||
|
|
||||||
task:
|
task:
|
||||||
pub_cache:
|
pub_cache:
|
||||||
folder: $HOME/.pub-cache
|
folder: $HOME/.pub-cache
|
||||||
|
@ -11,4 +13,4 @@ task:
|
||||||
analyze_script: tool/analyze.sh
|
analyze_script: tool/analyze.sh
|
||||||
test_moor_script: tool/test_moor.sh
|
test_moor_script: tool/test_moor.sh
|
||||||
test_sqlparser_script: tool/test_sqlparser.sh
|
test_sqlparser_script: tool/test_sqlparser.sh
|
||||||
format_coverage_script: tool/upload_coverage.sh
|
# format_coverage_script: tool/upload_coverage.sh
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
cd moor
|
cd moor
|
||||||
dart tool/coverage.dart
|
#dart tool/coverage.dart
|
||||||
|
pub run build_runner test
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
cd sqlparser
|
cd sqlparser
|
||||||
dart tool/coverage.dart
|
#dart tool/coverage.dart
|
||||||
|
pub run test
|
Loading…
Reference in New Issue