Skip to content

Commit

Permalink
Remove debug prints from migrations tests - 1.1.13 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonp2412 committed Jun 4, 2024
1 parent 6a3adda commit 2be7849
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/1203.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Remove debug prints from migrations tests
- Remove git push --force from deploy.sh
- Fix all database migration issues
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flexify
description: Track gym progress, visualize graphs, enjoy offline support & timers
publish_to: none
version: 1.1.12+119
version: 1.1.13+120
environment:
sdk: '>=3.2.6 <4.0.0'
dependencies:
Expand Down
2 changes: 0 additions & 2 deletions test/migrations_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'package:drift/native.dart';
import 'package:drift_dev/api/migrations.dart';
import 'package:flexify/database.dart';
import 'package:flexify/main.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:shared_preferences/shared_preferences.dart';

Expand All @@ -29,7 +28,6 @@ void main() {

for (int to = from + 1; to <= currentVersion; to++) {
if (to == 8 || to == 9) continue;
debugPrint("Migrating from $from to $to");
final connection = await verifier.startAt(from);
db = AppDatabase(executor: connection);
await verifier.migrateAndValidate(db, to);
Expand Down

0 comments on commit 2be7849

Please sign in to comment.