Merge remote-tracking branch 'origin/main' into release/v0.36.0

This commit is contained in:
Krille 2024-12-18 11:29:48 +01:00
commit a3b9f40810
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652
4 changed files with 6 additions and 8 deletions

View File

@ -129,7 +129,7 @@ jobs:
- name: Run tests - name: Run tests
run: | run: |
dart pub get dart pub get
dart test test/box_test.dart --platform chrome --fail-fast dart test test/box_test.dart --platform chrome
pub-dev-dry-run: pub-dev-dry-run:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -35,12 +35,10 @@ dependencies:
webrtc_interface: ^1.2.0 webrtc_interface: ^1.2.0
dev_dependencies: dev_dependencies:
build_runner: ^2.4.13
coverage: ">=0.15.0 <2.0.0" coverage: ">=0.15.0 <2.0.0"
enhanced_enum_generator: ^0.2.4
file: ">=6.1.1 <8.0.0" file: ">=6.1.1 <8.0.0"
import_sorter: ^4.6.0 import_sorter: ^4.6.0
lints: ^5.0.0 lints: ^5.0.0
path: ^1.9.0 path: ^1.9.1
sqflite_common_ffi: ^2.3.2+1 # sqflite_common_ffi aggressively requires newer dart versions sqflite_common_ffi: ^2.3.4+4 # sqflite_common_ffi aggressively requires newer dart versions
test: ^1.15.7 test: ^1.25.13

View File

@ -6,7 +6,7 @@ if [ -n "$NO_OLM" ]; then
tagFlag="-x olm" tagFlag="-x olm"
fi fi
dart test --concurrency=$thread_count --coverage=coverage_dir $tagFlag --fail-fast dart test --concurrency=$thread_count --coverage=coverage_dir $tagFlag
TEST_CODE=$? TEST_CODE=$?
# lets you do more stuff like reporton # lets you do more stuff like reporton

View File

@ -109,7 +109,7 @@ void main() {
}); });
test('Login', () async { test('Login', () async {
final matrix = Client( matrix = Client(
'testclient', 'testclient',
httpClient: FakeMatrixApi(), httpClient: FakeMatrixApi(),
databaseBuilder: getDatabase, databaseBuilder: getDatabase,