Skip to content

Commit

Permalink
Exclude http2_adapter from browser tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhnroyal committed Feb 27, 2024
1 parent 507cbd7 commit 583a465
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
- name: '[Verify step] Test Dart packages [VM]'
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --no-flutter -- "MELOS_ROOT_PATH/scripts/dart_test.sh --platform=vm"
- name: '[Verify step] Test Dart packages [Chrome]'
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --no-flutter -- "MELOS_ROOT_PATH/scripts/dart_test.sh --platform=chrome"
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --ignore="http2*" --no-flutter -- "MELOS_ROOT_PATH/scripts/dart_test.sh --platform=chrome"
- name: '[Verify step] Test Dart packages [Firefox]'
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --no-flutter -- "MELOS_ROOT_PATH/scripts/dart_test.sh --platform=firefox"
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --ignore="http2*" --no-flutter -- "MELOS_ROOT_PATH/scripts/dart_test.sh --platform=firefox"
- name: '[Verify step] Test Flutter packages'
run: melos exec $(eval echo $IGNORED_PACKAGES) --ignore="*example*" --flutter -- "flutter test"
1 change: 0 additions & 1 deletion plugins/http2_adapter/test/http2_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@TestOn('vm')
import 'package:dio/dio.dart';
import 'package:dio_http2_adapter/dio_http2_adapter.dart';
import 'package:test/test.dart';
Expand Down
1 change: 0 additions & 1 deletion plugins/http2_adapter/test/pinning_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@TestOn('vm')
import 'dart:io';

import 'package:crypto/crypto.dart';
Expand Down
1 change: 0 additions & 1 deletion plugins/http2_adapter/test/request_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@TestOn('vm')
import 'dart:io';

import 'package:dio/dio.dart';
Expand Down
1 change: 0 additions & 1 deletion plugins/http2_adapter/test/timeout_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@TestOn('vm')
import 'dart:async';

import 'package:dio/dio.dart';
Expand Down

0 comments on commit 583a465

Please sign in to comment.