We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating Build objects using t.builds(..) means they do not have a jobs attribute
Build
t.builds(..)
jobs
t = travispy.TravisPy() builds = t.builds(slug='menegazzo/travispy') assert len(builds) > 1 assert all(isinstance(build, travispy.entities.build.Build) for build in builds) build = builds[0] assert hasattr(build, 'jobs')
The text was updated successfully, but these errors were encountered:
+1. Doc says "Build" entity has "jobs" attribute with jobs list, but there's no such attribute in runtime :(
Sorry, something went wrong.
Hi. Unfortunately I don't have the time to keep the support on this library. If you have the interest in taking the ownership of this, let me know.
No branches or pull requests
Creating
Build
objects usingt.builds(..)
means they do not have ajobs
attributeThe text was updated successfully, but these errors were encountered: