Don't run analyzer tests on the CI

This commit is contained in:
Simon Binder 2019-10-11 16:42:08 +02:00
parent 5ae3d7c2af
commit 24c4e5c7d4
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
4 changed files with 10 additions and 1 deletions

3
moor_generator/test.yaml Normal file
View File

@ -0,0 +1,3 @@
tags:
# Tests that spawn a Dart analyzer
analyzer:

View File

@ -1,3 +1,5 @@
@Tags(['analyzer'])
import 'package:analyzer/dart/ast/ast.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:build/build.dart';

View File

@ -1,3 +1,5 @@
@Tags(['analyzer'])
import 'package:analyzer/dart/element/element.dart';
import 'package:build/build.dart';
import 'package:moor_generator/src/analyzer/dart/parser.dart';

View File

@ -1,4 +1,6 @@
#!/usr/bin/env bash
cd moor_generator
pub run test
# todo figure out why analyzer tests don't run on the CI (it throws an internal error)
pub run test --exclude-tags analyzer