I just found a simple way to automatically test new pull requests with sympy-bot that I thought I would share. Suppose the most recent pull request number is 1674. Just execute the command
sympy-bot review 1675 1676 1677 1678 1679 1680 and put as many numbers as you want. The bot will then try to test 1675. That pull request doesn't exist yet, so when it tries to get the info from GitHub, it will get a 404 error. The bot will then automatically continue to try again, until it doesn't get an error. It uses a time doubling scheme so that it doesn't spam GitHub with too many requests. Eventually, someone will make PR 1675, and it will test that and upload the review. Then, it will move on to 1676 and repeat. This of course doesn't test any new commits on pull requests, and has zero configurability, but it also requires literally no work to set up, so it's a nice poor man's way of automatically testing new pull requests as they come in. Aaron Meurer -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
