From e0f3d741a434fd72246c7c3ed2088f2c439a48d3 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Fri, 23 Apr 2021 13:47:56 +0100 Subject: [PATCH 1/2] build: PRs can test deploy --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edb60621a..7c2d7687e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -131,7 +131,6 @@ jobs: env: CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} deploy: - if: github.event_name != 'pull_request' || github.head_ref != 'devel' needs: [check, test, test-os] runs-on: ubuntu-latest steps: From 7179c9e8e4866022ec0cb7fdd90bed5e24a2064f Mon Sep 17 00:00:00 2001 From: Daniel Armbruster Date: Mon, 3 May 2021 00:53:47 +0200 Subject: [PATCH 2/2] tests: fix typo --- tests/tests_contrib_logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_contrib_logging.py b/tests/tests_contrib_logging.py index e2affa786..eaccb6152 100644 --- a/tests/tests_contrib_logging.py +++ b/tests/tests_contrib_logging.py @@ -124,7 +124,7 @@ def test_should_inherit_console_logger_formatter(self): with logging_redirect_tqdm(loggers=[logger]): assert logger.handlers[0].formatter == formatter - def test_should_not_remove_stream_handlers_not_fot_stdout_or_stderr(self): + def test_should_not_remove_stream_handlers_not_for_stdout_or_stderr(self): logger = logging.Logger('test') stream_handler = logging.StreamHandler(StringIO()) logger.addHandler(stream_handler)