summaryrefslogtreecommitdiff
path: root/tests/testutils
diff options
context:
space:
mode:
authorBenjamin Schubert <bschubert15@bloomberg.net>2019-12-02 11:35:32 +0000
committerBenjamin Schubert <bschubert15@bloomberg.net>2019-12-02 11:51:15 +0000
commitff6f6d0c38218d954814847f2a25b6d056347691 (patch)
tree60ae44ff3e6582eeda329f859d63a559c164c12c /tests/testutils
parente4ed02fbfcea355d6432e7a2e389af84a94120dd (diff)
downloadbuildstream-ff6f6d0c38218d954814847f2a25b6d056347691.tar.gz
Update all python dependencies
This updates all dependencies on the project, which is mainly needed by python3.8 but can be done independentely. This also disables multiple false positive lint errors and disable a new check that we don't need.
Diffstat (limited to 'tests/testutils')
-rw-r--r--tests/testutils/repo/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/repo/git.py b/tests/testutils/repo/git.py
index b9360e9cd..1deca3ff7 100644
--- a/tests/testutils/repo/git.py
+++ b/tests/testutils/repo/git.py
@@ -27,7 +27,7 @@ class Git(Repo):
kwargs["env"] = dict(self.env, PWD=self.repo)
kwargs.setdefault("cwd", self.repo)
kwargs.setdefault("check", True)
- return subprocess.run(argv, **kwargs)
+ return subprocess.run(argv, **kwargs) # pylint: disable=subprocess-run-check
def create(self, directory):
self.copy_directory(directory, self.repo)