From 586658e29cd1ebbfb1566495d44d07ee9ebbd533 Mon Sep 17 00:00:00 2001 From: MartinGotelli Date: Sat, 10 Aug 2024 15:42:32 -0300 Subject: [PATCH] chore: Fix lint job --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c498222..9b5dec8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -30,7 +30,7 @@ jobs: if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi - name: Lint with pylint run: | - make pylint + make lint - name: Test with pytest run: | make coverage diff --git a/pyproject.toml b/pyproject.toml index 161616d..229a42d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-matchers" -version = "0.0.1" +version = "0.1.0" description = "Matchers for pytest" authors = ["MartinGotelli "] readme = "README.md"