Skip to content

Commit

Permalink
use print with ignoring the rule
Browse files Browse the repository at this point in the history
  • Loading branch information
masa-tokyo committed Dec 7, 2023
1 parent d7a3221 commit 05e7d25
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/bootstrap_package/test/analysis_format_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'dart:developer';
import 'dart:io';

import 'package:path/path.dart' as path;
Expand All @@ -11,12 +10,14 @@ import 'package:test/test.dart';
void main() {
test('Analysis format test', () {
// TODO(masaki): delete after checking the absolute path
log('current: ${Directory.current.path}');
// ignore_for_file: avoid_print

print('current: ${Directory.current.path}');
final workspacePath = Platform.environment['GITHUB_WORKSPACE'] ?? '';
log('workspacePath: $workspacePath');
print('workspacePath: $workspacePath');
// // プロジェクトルートへ移動
Directory.current = Directory('../..');
log('current: ${Directory.current.path}');
print('current: ${Directory.current.path}');

// 一意な名前のパッケージを生成
final now = DateTime.now().microsecondsSinceEpoch;
Expand Down

0 comments on commit 05e7d25

Please sign in to comment.