Skip to content

Commit 262a934

Browse files
committed
Skip slow tests on macOS
1 parent 5cbc515 commit 262a934

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
- name: Dart tests on macOS
7979
if: runner.os == 'macOS'
8080
working-directory: dart
81+
# We skip sync_local_performance_test on macOS because the runners are just so slow...
8182
run: |
82-
CORE_TEST_SQLITE=.dart_tool/sqlite3/latest/libsqlite3.dylib dart test
83-
CORE_TEST_SQLITE=.dart_tool/sqlite3/minimum/libsqlite3.dylib dart test
83+
CORE_TEST_SQLITE=.dart_tool/sqlite3/latest/libsqlite3.dylib dart test -P skip_slow
84+
CORE_TEST_SQLITE=.dart_tool/sqlite3/minimum/libsqlite3.dylib dart test -P skip_slow

dart/dart_test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tags:
2+
slow:
3+
4+
presets:
5+
skip_slow:
6+
exclude_tags: slow

dart/test/sync_local_performance_test.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
@Tags(['slow'])
2+
library;
3+
14
import 'dart:convert';
25

36
import 'package:sqlite3/common.dart';

0 commit comments

Comments
 (0)