From 7e61cf0dfedc7447c43698176a1878ca45cc9644 Mon Sep 17 00:00:00 2001 From: meherett Date: Fri, 13 Oct 2023 06:59:09 +0300 Subject: [PATCH] Add: PyYAML package on tests requirements --- .github/workflows/workflow.yml | 2 -- setup.py | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 94fca63..39f0db5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -32,5 +32,3 @@ jobs: pip install -e .[tests,docs] - name: Test with pytest run: pytest - - name: Coveralls - uses: coverallsapp/github-action@v2 diff --git a/setup.py b/setup.py index 09b38ad..4ff61b2 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,8 @@ extras_require={ "tests": [ "pytest>=7.4.0,<8", - "pytest-cov>=4.1.0,<5" + "pytest-cov>=4.1.0,<5", + "pyyaml>=6.0.1,<7" ], "docs": [ "sphinx>=7.2.5,<8",