From f40b81945dfb358c77f6dbb8da7832819c989757 Mon Sep 17 00:00:00 2001 From: zhukovgreen Date: Tue, 25 Jan 2022 18:49:06 +0100 Subject: [PATCH] add pytest-mock to the hardcoded dependencies this is workaround of https://github.com/python-poetry/poetry/issues/3514 issue --- .github/workflows/python_checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_checker.yml b/.github/workflows/python_checker.yml index c75633d8..badb4082 100644 --- a/.github/workflows/python_checker.yml +++ b/.github/workflows/python_checker.yml @@ -16,7 +16,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 flake8-docstrings pytest pytest-cov + pip install flake8 flake8-docstrings pytest pytest-cov pytest-mock if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f pyproject.toml ]; then pip install .; fi - name: Test with pytest