Skip to content

Commit 754d970

Browse files
committed
Moving fixes
1 parent c62a875 commit 754d970

File tree

6 files changed

+19
-22
lines changed

6 files changed

+19
-22
lines changed

pkgs/test_process/.github/workflows/test-package.yml renamed to .github/workflows/test_process.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
1-
name: Dart CI
1+
name: package:test_process
22

33
on:
44
# Run on PRs and pushes to the default branch.
55
push:
66
branches: [ master ]
7+
paths:
8+
- '.github/workflows/test_process.yaml'
9+
- 'pkgs/test_process/**'
710
pull_request:
811
branches: [ master ]
12+
paths:
13+
- '.github/workflows/test_process.yaml'
14+
- 'pkgs/test_process/**'
915
schedule:
1016
- cron: "0 0 * * 0"
1117

1218
env:
1319
PUB_ENVIRONMENT: bot.github
1420

21+
22+
defaults:
23+
run:
24+
working-directory: pkgs/test_process/
25+
1526
jobs:
1627
# Check code formatting and static analysis on a single OS (linux)
1728
# against Dart dev.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ literate API.
2222
| [test](pkgs/test/) | A full featured library for writing and running Dart tests across platforms. | [![pub package](https://img.shields.io/pub/v/test.svg)](https://pub.dev/packages/test) |
2323
| [test_api](pkgs/test_api/) | | [![pub package](https://img.shields.io/pub/v/test_api.svg)](https://pub.dev/packages/test_api) |
2424
| [test_core](pkgs/test_core/) | | [![pub package](https://img.shields.io/pub/v/test_core.svg)](https://pub.dev/packages/test_core) |
25+
| [test_process](pkgs/test_process/) | Test processes: starting; validating stdout and stderr; checking exit code | [![pub package](https://img.shields.io/pub/v/test_process.svg)](https://pub.dev/packages/test_process) |

pkgs/test_process/.github/dependabot.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

pkgs/test_process/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 2.1.1-wip
1+
## 2.1.1
22

33
* Require Dart 3.1.
4+
* Move to `dart-lang/test` monorepo.
45

56
## 2.1.0
67

pkgs/test_process/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Dart CI](https://github.com/dart-lang/test_process/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/test_process/actions/workflows/test-package.yml)
1+
[![Build Status](https://github.com/dart-lang/test/actions/workflows/test_process.yaml/badge.svg)](https://github.com/dart-lang/test/actions/workflows/test_process.yaml)
22
[![pub package](https://img.shields.io/pub/v/test_process.svg)](https://pub.dev/packages/test_process)
33
[![package publisher](https://img.shields.io/pub/publisher/test_process.svg)](https://pub.dev/packages/test_process/publisher)
44

pkgs/test_process/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: test_process
2-
version: 2.1.1-wip
3-
description:
4-
"Test processes: starting; validating stdout and stderr; checking exit code"
2+
version: 2.1.1
3+
description: |
4+
Test processes: starting; validating stdout and stderr; checking exit code
55
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_process
66

77
environment:

0 commit comments

Comments
 (0)