From e524f58ab4c21c743eac4c1c70d38e13b04353e9 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 26 Jun 2023 14:03:39 +0200 Subject: [PATCH] Remove newly introduced trailing whitespace Signed-off-by: Stefan Weil --- .circleci/config.yml | 2 +- Makefile | 4 ++-- tests/cli/test_bashlib.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 080052146b..03f4f89ad7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: steps: - checkout - run: sudo apt-get -y update - - run: sudo make deps-ubuntu + - run: sudo make deps-ubuntu - run: make install deps-test - run: make test benchmark diff --git a/Makefile b/Makefile index f0ff387b20..5c1b9e3ae1 100644 --- a/Makefile +++ b/Makefile @@ -264,7 +264,7 @@ pyclean: .PHONY: docker docker-cuda # Additional arguments to docker build. Default: '$(DOCKER_ARGS)' -DOCKER_ARGS = +DOCKER_ARGS = # Build docker image docker: DOCKER_BASE_IMAGE = ubuntu:20.04 @@ -277,7 +277,7 @@ docker-cuda: DOCKER_FILE = Dockerfile.cuda docker-cuda: docker -docker docker-cuda: +docker docker-cuda: docker build --progress=plain -f $(DOCKER_FILE) -t $(DOCKER_TAG) --build-arg BASE_IMAGE=$(DOCKER_BASE_IMAGE) $(DOCKER_ARGS) . # Build wheels and source dist and twine upload them diff --git a/tests/cli/test_bashlib.py b/tests/cli/test_bashlib.py index fc043b5fd7..185a115096 100644 --- a/tests/cli/test_bashlib.py +++ b/tests/cli/test_bashlib.py @@ -49,7 +49,7 @@ def invoke_bash(self, script, *args, executable=None): return -1, "", str(e) finally: os.remove(scriptfile.name) - + def setUp(self): self.maxDiff = None super().setUp()