Skip to content

Commit ebce529

Browse files
committed
Pull request #66: ISGAPPSEC2-36322 (CW) Fix github pipeline for release branch
Merge in ISGAPPSEC/cyperf-api-wrapper from fix-github-pipeline-for-release-branch to release/26.0.0 Squashed commit of the following: commit afced70 Author: iustmitu <iustin.mitu@keysight.com> Date: Tue Mar 31 14:14:30 2026 +0300 deleted testing step because we have no more tests in the wrapper commit 6866c25 Author: iustmitu <iustin.mitu@keysight.com> Date: Tue Mar 31 14:01:31 2026 +0300 deleted wrong versions and pytest dependency
1 parent 649afb7 commit ebce529

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,11 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest
27+
pip install flake8
2828
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29-
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
3029
- name: Lint with flake8
3130
run: |
3231
# stop the build if there are Python syntax errors or undefined names
3332
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3433
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3534
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36-
- name: Test with pytest
37-
run: |
38-
pytest

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ CyPerf REST API
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 1.0.0
7-
- Package version: 1.0.0
86
- Generator version: 7.7.0
97
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
108

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ pydantic = ">=2"
1818
typing-extensions = ">=4.7.1"
1919

2020
[tool.poetry.dev-dependencies]
21-
pytest = ">=7.2.1"
2221
tox = ">=3.9.0"
2322
flake8 = ">=4.0.0"
2423
types-python-dateutil = ">=2.8.19.14"

0 commit comments

Comments
 (0)