Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dart.googlesource.com-test_process
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
dart.googlesource.com-test_process
Commits
607319b5
Commit
607319b5
authored
6 years ago
by
Patrice Chalin
Committed by
Kevin Moore
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
chore: set max SDK version to <3.0.0 (#14)
parent
9e89438a
No related branches found
Branches containing commit
Tags
1.0.4
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.travis.yml
+7
-4
7 additions, 4 deletions
.travis.yml
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
analysis_options.yaml
+0
-2
0 additions, 2 deletions
analysis_options.yaml
pubspec.yaml
+8
-7
8 additions, 7 deletions
pubspec.yaml
test/test_process_test.dart
+1
-1
1 addition, 1 deletion
test/test_process_test.dart
with
20 additions
and
14 deletions
.travis.yml
+
7
−
4
View file @
607319b5
...
...
@@ -2,16 +2,19 @@ language: dart
dart
:
-
dev
dart_task
:
-
dartfmt
-
dartanalyzer
-
test
# Only run one instance of the formatter and the analyzer, rather than running
# Only run one instance of the formatter and the analyzer, rather than running
# them against each Dart version.
matrix
:
in
clude
:
-
dart
:
dev
ex
clude
:
-
dart
:
stable
dart_task
:
dartfmt
-
dart
:
dev
-
dart
:
stable
dart_task
:
dartanalyzer
# Only building master means that we don't run two builds for each pull request.
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
4
−
0
View file @
607319b5
## 1.0.4
*
Set max SDK version to
`<3.0.0`
, and adjust other dependencies.
## 1.0.3
*
Support test
`1.x.x`
.
...
...
This diff is collapsed.
Click to expand it.
analysis_options.yaml
deleted
100644 → 0
+
0
−
2
View file @
9e89438a
analyzer
:
strong-mode
:
true
This diff is collapsed.
Click to expand it.
pubspec.yaml
+
8
−
7
View file @
607319b5
name
:
test_process
version
:
1.0.3
version
:
1.0.4
description
:
A package for testing subprocesses.
author
:
Dart Team <misc@dartlang.org>
homepage
:
https://github.com/dart-lang/test_process
environment
:
sdk
:
'
>=2.0.0-dev.55.0
<
2
.0.0'
sdk
:
'
>=2.0.0-dev.55.0
<
3
.0.0'
dependencies
:
async
:
"
>=1.12.0
<3.0.0
"
meta
:
"
>=0.9.0
<2.0.0
"
path
:
"
^1.0.0
"
test
:
"
>=0.12.
19
<2.0.0
"
async
:
'
>=1.12.0
<3.0.0
'
meta
:
'
>=0.9.0
<2.0.0
'
path
:
^1.0.0
test
:
'
>=0.12.
42
<2.0.0
'
dev_dependencies
:
test_descriptor
:
"
^1.0.0
"
test_descriptor
:
^1.0.0
This diff is collapsed.
Click to expand it.
test/test_process_test.dart
+
1
−
1
View file @
607319b5
...
...
@@ -11,7 +11,7 @@ import 'package:test/test.dart';
import
'package:test_descriptor/test_descriptor.dart'
as
d
;
import
'package:test_process/test_process.dart'
;
final
throwsTestFailure
=
throwsA
(
new
isInstanceOf
<
TestFailure
>());
final
throwsTestFailure
=
throwsA
(
new
TypeMatcher
<
TestFailure
>());
void
main
()
{
group
(
"shouldExit()"
,
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment