Moving fixes
diff --git a/pkgs/test_process/.github/workflows/test-package.yml b/.github/workflows/test_process.yaml
similarity index 86%
rename from pkgs/test_process/.github/workflows/test-package.yml
rename to .github/workflows/test_process.yaml
index 0fc8487..2c0da6d 100644
--- a/pkgs/test_process/.github/workflows/test-package.yml
+++ b/.github/workflows/test_process.yaml
@@ -1,17 +1,28 @@
-name: Dart CI
+name: package:test_process
on:
# Run on PRs and pushes to the default branch.
push:
branches: [ master ]
+ paths:
+ - '.github/workflows/test_process.yaml'
+ - 'pkgs/test_process/**'
pull_request:
branches: [ master ]
+ paths:
+ - '.github/workflows/test_process.yaml'
+ - 'pkgs/test_process/**'
schedule:
- cron: "0 0 * * 0"
env:
PUB_ENVIRONMENT: bot.github
+
+defaults:
+ run:
+ working-directory: pkgs/test_process/
+
jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
diff --git a/README.md b/README.md
index 25b50aa..5b80a28 100644
--- a/README.md
+++ b/README.md
@@ -22,3 +22,4 @@
| [test](pkgs/test/) | A full featured library for writing and running Dart tests across platforms. | [](https://pub.dev/packages/test) |
| [test_api](pkgs/test_api/) | | [](https://pub.dev/packages/test_api) |
| [test_core](pkgs/test_core/) | | [](https://pub.dev/packages/test_core) |
+| [test_process](pkgs/test_process/) | Test processes: starting; validating stdout and stderr; checking exit code | [](https://pub.dev/packages/test_process) |
diff --git a/pkgs/test_process/.github/dependabot.yml b/pkgs/test_process/.github/dependabot.yml
deleted file mode 100644
index a19a66a..0000000
--- a/pkgs/test_process/.github/dependabot.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-# Set update schedule for GitHub Actions
-# See https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
-
-version: 2
-updates:
-
-- package-ecosystem: github-actions
- directory: /
- schedule:
- interval: monthly
- labels:
- - autosubmit
- groups:
- github-actions:
- patterns:
- - "*"
diff --git a/pkgs/test_process/CHANGELOG.md b/pkgs/test_process/CHANGELOG.md
index 72f1797..b267290 100644
--- a/pkgs/test_process/CHANGELOG.md
+++ b/pkgs/test_process/CHANGELOG.md
@@ -1,6 +1,7 @@
-## 2.1.1-wip
+## 2.1.1
* Require Dart 3.1.
+* Move to `dart-lang/test` monorepo.
## 2.1.0
diff --git a/pkgs/test_process/README.md b/pkgs/test_process/README.md
index 6fa42d2..0d4e5f5 100644
--- a/pkgs/test_process/README.md
+++ b/pkgs/test_process/README.md
@@ -1,4 +1,4 @@
-[](https://github.com/dart-lang/test_process/actions/workflows/test-package.yml)
+[](https://github.com/dart-lang/test/actions/workflows/test_process.yaml)
[](https://pub.dev/packages/test_process)
[](https://pub.dev/packages/test_process/publisher)
diff --git a/pkgs/test_process/pubspec.yaml b/pkgs/test_process/pubspec.yaml
index 12741ba..60158d4 100644
--- a/pkgs/test_process/pubspec.yaml
+++ b/pkgs/test_process/pubspec.yaml
@@ -1,7 +1,7 @@
name: test_process
-version: 2.1.1-wip
-description:
- "Test processes: starting; validating stdout and stderr; checking exit code"
+version: 2.1.1
+description: |
+ Test processes: starting; validating stdout and stderr; checking exit code
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_process
environment: