yagocd icon indicating copy to clipboard operation
yagocd copied to clipboard

Yet another GoCD python client

Results 6 yagocd issues
Sort by recently updated
recently updated
newest added

GoCD's about page changed layout and is thus no longer parsable by the `InfoManager` class. Which leads to an error when trying to connect to a GOCD-Server v19.5.0

We have a pipeline with a single material, and we try to schedule it this way: ourpipeline.schedule(materials=[{'fingerprint': '480432aaa123b49d8336b14e46f94e3ceffd38a6b96ded683c0e5ba2d2efbc63', 'revision': '00e3442b81d6b272083391d146bd9c5cdf6ce2f6'}]) But instead of triggering with the specified git revision, this...

Hi, I cannot find any documentation on this. What I am look for is the correct syntax required to trigger pipelines with variables. I have tried a combination of the...

Some managers support iteration and indexing, why not to support len() as well?

Right now it's possible to login with guest like this: ```python from yagocd import Yagocd go = Yagocd(server='https://build.gocd.io') # login as guest go._session.get('https://build.gocd.io/go/plugin/interact/gocd.guest.user.auth.plugin/index') print(len(list(go.pipelines))) ``` Should be separate method, somewhere...