From 6866c25a720ca6370b45650a53774bdcfdf93a73 Mon Sep 17 00:00:00 2001 From: iustmitu Date: Tue, 31 Mar 2026 14:01:31 +0300 Subject: [PATCH 1/2] deleted wrong versions and pytest dependency --- README.md | 2 -- pyproject.toml | 1 - 2 files changed, 3 deletions(-) diff --git a/README.md b/README.md index 54a6144..6609198 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ CyPerf REST API This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 1.0.0 -- Package version: 1.0.0 - Generator version: 7.7.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/pyproject.toml b/pyproject.toml index 8c74be2..c498ef5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ pydantic = ">=2" typing-extensions = ">=4.7.1" [tool.poetry.dev-dependencies] -pytest = ">=7.2.1" tox = ">=3.9.0" flake8 = ">=4.0.0" types-python-dateutil = ">=2.8.19.14" From afced70a51fa00a83baa5390e8ac70a08f72c37a Mon Sep 17 00:00:00 2001 From: iustmitu Date: Tue, 31 Mar 2026 14:14:30 +0300 Subject: [PATCH 2/2] deleted testing step because we have no more tests in the wrapper --- .github/workflows/python.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 5c5289c..6497d62 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -24,15 +24,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest + pip install flake8 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest