Skip to content

Commit

Permalink
Merge branch 'dell:main' into requirement_change
Browse files Browse the repository at this point in the history
  • Loading branch information
meenakshidembi691 committed May 28, 2024
2 parents 9a7a319 + 6a95bee commit 335076a
Show file tree
Hide file tree
Showing 5 changed files with 515 additions and 47 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run Unit Test via Pytest

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install testtools
pip install requests
pip install pytest
pip install pytest-coverage
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
python -m unittest -v tests/test_*.py
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# PyPowerFlex Change Log

## Version 1.12.0 - released on 31/05/24
- Enhanced the storage pool module by adding support for more functionalities.

## Version 1.11.0 - released on 30/04/24
- Added support to query selected statistics to all relevant objects/entities from PowerFlex Manager.

Expand Down
Loading

0 comments on commit 335076a

Please sign in to comment.