Awesome
travis-build-repeat
👷 Repeat TravisCI builds to avoid stale test results
If your project's tests rely on a 3rd party API or service, running your tests at commit time isn't enough. To ensure your projects continue function correctly, you need to regularly run your test suite. travis-build-repeat
lets you automate this process with AWS Lambda.
Once setup, travis-build-repeat
automatically restarts the latest build of your project on a schedule, so you'll get notified if something breaks.
Installation
-
Clone the repo
https://github.com/bcongdon/travis-build-repeat
-
Install dependencies
pip install -r requirements.txt
-
Copy
settings.py.template
tosettings.py
.cp settings.py.template settings.py
-
Create a Github access token here with the following permissions:
- read:org
- user:email
- repo_deployment
- repo:status
- write:repo_hook
-
Set
TRAVIS_KEY
insettings.py
to be this access token. -
Add the repos you want to keep updated to
TRAVIS_REPOS
, with the formatusername/repo_name
-
Run
zappa deploy
to schedule the AWS Lambda functions. (Note: This will require you to have setup your AWS credentials file)
Additional Instructions
Updating
If you make an update to your configuration, run zappa update
to push those changes to AWS.
Undeploying
If you want to stop travis-build-repeat
, run zappa undeploy
to unschedule the Lambdas.
Schedule Rate
By default, travis-build-repeat
runs daily. If you wish to change this rate, edit the event expression
in zappa_settings.json
.
You can find a description of valid rate expressions here.