Even on projects I don't have access to, I've also found that running--

    git commit --amend

with no changes and then force-pushing (git push -f) works to
re-trigger Travis CI. I believe it updates the date of the last commit
but otherwise leaves everything the same (so no need to edit files).

--Chris

On Thu, Aug 17, 2017 at 11:31 AM, Brett Cannon <br...@python.org> wrote:
>
>
>
> On Wed, 16 Aug 2017 at 12:03 Terry Reedy <tjre...@udel.edu> wrote:
>>
>> On 8/16/2017 2:32 PM, Antoine Pitrou wrote:
>>
>> > One of my PR builds got an AppVeyor failure in test_asyncgen
>> > and I really doubt it is due to the PR itself:
>> > https://ci.appveyor.com/project/python/cpython/build/3.7.0a0.5366#L682
>>
>> The first failure message:
>>
>> test_async_gen_asyncio_gc_aclose_09
>> (test.test_asyncgen.AsyncGenAsyncioTest) ... Task was destroyed but it
>> is pending!
>> task: <Task pending coro=<async_generator_athrow()> wait_for=<Future
>> finished result=None>>
>> FAIL
>>
>> > ======================================================================
>> > FAIL: test_async_gen_asyncio_gc_aclose_09 
>> > (test.test_asyncgen.AsyncGenAsyncioTest)
>> > ----------------------------------------------------------------------
>> > Traceback (most recent call last):
>> >    File "C:\projects\cpython\lib\test\test_asyncgen.py", line 627, in 
>> > test_async_gen_asyncio_gc_aclose_09
>> >      self.assertEqual(DONE, 1)
>> > AssertionError: 0 != 1
>>
>> It passed on the retest:
>> test_async_gen_asyncio_gc_aclose_09
>> (test.test_asyncgen.AsyncGenAsyncioTest) ... ok
>>
>> I have seen obviously unrelated intermittent failures like this too.  If
>> it were to happen on Travis on the retest also, and I wanted to merge, I
>> would try to unblock the merge by making an innocuous change in the
>> blurb or some comment or docstring with the web editor.
>
>
> I think as a core dev you can manually re-run the build on Travis. The other 
> option is to close and then open again the PR as that will re-trigger Travis.
>
> _______________________________________________
> python-committers mailing list
> python-committers@python.org
> https://mail.python.org/mailman/listinfo/python-committers
> Code of Conduct: https://www.python.org/psf/codeofconduct/
>
_______________________________________________
python-committers mailing list
python-committers@python.org
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/

Reply via email to