From 7aa5738c6855ae07d8ed04c084a8a9564ef5eead Mon Sep 17 00:00:00 2001 From: Ellis Percival <flyte@failcode.co.uk> Date: Mon, 18 Jan 2021 20:07:18 +0000 Subject: [PATCH] Use single quotes for literals --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 598aff5..2dbdc31 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - run: pip install pytest mock -r requirements.txt - run: make schema - run: pip install black - if: matrix.python-version != "2.7" + if: matrix.python-version != '2.7' - run: make black - if: matrix.python-version != "2.7" + if: matrix.python-version != '2.7' - run: PYTHONPATH=$GITHUB_WORKSPACE py.test -m "not hw_raspberrypi and not mqtt" -- GitLab