summaryrefslogtreecommitdiff
path: root/client/utils/git.py
AgeCommit message (Collapse)Author
2019-05-23Update client code to install specific componentsMark Wong
The pgbench directory and other utilities have moved around. Compensate by testing if the directory exists and try to install that component.
2018-07-18Save postgres branch, commit, and settings in results jsonMark Wong
2017-12-19Install pgbench from contrib for older versionsMark Wong
Prior to 9.5, pgbench was in contrib.
2017-08-04pep8 coding styleMark Wong
2017-02-27Fix CWD when running 'git pull', fix parameters.Tomas Vondra
When refreshing a reporitory clone, running 'git pull $dir' does not do the trick - it assumes the CWD is the clone, and imports data from repository at $dir. So we need to set CWD properly and do just 'git pull'. Also, prefix class members with 'self'.
2017-02-27Import initial version of the clientTomas Vondra