From 24b235f64e049c1d5415a5a19f0db91286f41e3a Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Fri, 4 Jun 2021 23:32:19 +0100 Subject: [PATCH 1/2] bpo-38323: Remove test_cancel_make_subprocess_transport_exec as it has a rance condicion --- Lib/test/test_asyncio/test_subprocess.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 225a3babc844b8..9c8d2089f47266 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -424,23 +424,6 @@ async def cancel_wait(): self.loop.run_until_complete(cancel_wait()) - def test_cancel_make_subprocess_transport_exec(self): - - async def cancel_make_transport(): - coro = asyncio.create_subprocess_exec(*PROGRAM_BLOCKED) - task = self.loop.create_task(coro) - - self.loop.call_soon(task.cancel) - try: - await task - except asyncio.CancelledError: - pass - - # ignore the log: - # "Exception during subprocess creation, kill the subprocess" - with test_utils.disable_logger(): - self.loop.run_until_complete(cancel_make_transport()) - def test_cancel_post_init(self): async def cancel_make_transport(): From 05dd23483d1963252150ca277a64476b110ccc6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Aug 2021 19:09:26 +0000 Subject: [PATCH 2/2] build(deps): bump actions/stale from 3 to 4 Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 26806fad814f1a..e3b8b9f942d18a 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v3 + - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'