summaryrefslogtreecommitdiff
path: root/buildstream
Commit message (Expand)AuthorAgeFilesLines
* _loader/loadelement.py: Use enumerate() in dependency extractiondanielsilverstone-ct/use-enumerateDaniel Silverstone2018-10-261-5/+3
* Check if command is a str and replace by list before checking existenceBenjamin Schubert2018-10-263-8/+12
* _yaml.py: Do not insert into cache if retrieved from cacheDaniel Silverstone2018-10-261-3/+2
* build elements: Add reference to BuildElement's built-in configchandan/source-doc-directoryChandan Singh2018-10-2512-0/+35
* sources: Don't redundantly document directory configurationChandan Singh2018-10-2511-34/+28
* _artifactcache/cascache.py: Cleanup lint warning about indexingDaniel Silverstone2018-10-251-2/+3
* _artifactcache/cascache.py: Remove unused importsDaniel Silverstone2018-10-251-1/+0
* _artifactcache/cascache.py: Prepare attributes in __init__Daniel Silverstone2018-10-251-0/+4
* _artifactcache/cascache.py: Silence len(SEQUENCE) as condition warningsDaniel Silverstone2018-10-251-3/+3
* _artifactcache/cascache.py: Refactor slightly for indentationDaniel Silverstone2018-10-251-3/+4
* sandbox/_sandboxchroot.py: Silence warning about dict.getDaniel Silverstone2018-10-251-1/+1
* sandbox/_sandboxchroot.py: Silence warning about preexec_fnDaniel Silverstone2018-10-251-1/+1
* sandbox/_sandboxchroot.py: Silence warning about unused variableDaniel Silverstone2018-10-251-1/+0
* sandbox/_sandboxbwrap.py: Disable lint about dict.getDaniel Silverstone2018-10-251-1/+1
* sandbox/_mounter.py: Remove useless inheritance on `object`Daniel Silverstone2018-10-251-1/+1
* sandbox/_mount.py: Do not use dict literals in argument defaultsDaniel Silverstone2018-10-251-3/+6
* plugins/source/git.py: Rationalised unused return valuesDaniel Silverstone2018-10-251-2/+2
* _scheduler/queue/trackqueue.py: Remove unused importDaniel Silverstone2018-10-251-1/+0
* _scheduler/queue/pullqueue.py: Remove unused return valueDaniel Silverstone2018-10-251-1/+1
* _scheduler/jobs/job.py: Correct lint issue around abstract methodDaniel Silverstone2018-10-251-1/+1
* _platform/linux.py: Simplify return statementDaniel Silverstone2018-10-251-5/+1
* _platform/linux.py: Remove unused importsDaniel Silverstone2018-10-251-1/+0
* _platform/darwin.py: Remove unused importsDaniel Silverstone2018-10-251-2/+0
* _platform/darwin.py: Remove useless __init__()Daniel Silverstone2018-10-251-4/+0
* _options/optionbool.py: Refactor conditionsDaniel Silverstone2018-10-251-2/+2
* _fuse/mount.py: Deal with abstract method lint issueDaniel Silverstone2018-10-251-1/+1
* _fuse/{hardlinks,mount}.py: Remove dangerous use of {} in defaultsDaniel Silverstone2018-10-252-3/+5
* _frontend/status.py: Reorder importsDaniel Silverstone2018-10-251-1/+1
* _frontend/app.py: Remove unused import of `resource`Daniel Silverstone2018-10-251-1/+0
* _artifactcache/artifactcache.py: Silence lint issuesDaniel Silverstone2018-10-251-3/+3
* _artifactcache/artifactcache.py: Remove superfluous parensDaniel Silverstone2018-10-251-1/+1
* utils.py: Group stat importsDaniel Silverstone2018-10-251-1/+1
* utils.py: Disable lint warning about popenDaniel Silverstone2018-10-251-1/+2
* source.py: Remove unused variableDaniel Silverstone2018-10-251-2/+0
* source.py: Remove unused local variableDaniel Silverstone2018-10-251-1/+0
* source.py: Quiet several pylint issues with abstract methodsDaniel Silverstone2018-10-251-6/+6
* plugin.py: use dict.get() instead of an if statementDaniel Silverstone2018-10-251-3/+1
* element.py: Silence pylint warning about abstract methodDaniel Silverstone2018-10-251-1/+1
* element.py: Simplify some conditions with `in (foo, bar)`Daniel Silverstone2018-10-251-2/+2
* buildelement.py: Quieten a lint about `__commands`Daniel Silverstone2018-10-251-1/+1
* _yamlcache.py: Remove unused importsDaniel Silverstone2018-10-251-2/+1
* _yamlcache.py: Correct braino in variable nameDaniel Silverstone2018-10-251-1/+1
* _yamlcache.py: Correct bug in `YamlCache._get_filepath()`Daniel Silverstone2018-10-251-1/+1
* _yaml.py: Quieten a lint in Python < 3.6Daniel Silverstone2018-10-251-2/+3
* _yaml.py: use `in (a,b)` to simply boolean checksDaniel Silverstone2018-10-251-2/+2
* _workspaces.py: Simplify chained comparisonDaniel Silverstone2018-10-251-1/+1
* _variables.py: Fix lint issue in `find_recursive_variable`Daniel Silverstone2018-10-251-2/+2
* _context.py: Remove useless `return` from `Context.message`Daniel Silverstone2018-10-251-1/+0
* _downloadablefilesource: handle ValueError-sAngelos Evripiotis2018-10-251-1/+3
* _sandboxremote.py: Try to reopen operation steam on failuremablanch/630-remote-execution-reconnMartin Blanchard2018-10-231-15/+43