We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390e57e commit 7c18a6bCopy full SHA for 7c18a6b
4 files changed
.coverage
52 KB
.github/workflows/pypi.yml
@@ -43,15 +43,14 @@ jobs:
43
- name: Install Dependencies
44
run: |
45
python -m pip install --upgrade pip
46
- pip install build
47
pip install pylint
48
- pip install -r requirements.txt
+ pip install -r requirements_test.txt
49
- name: Test API
50
51
pylint prismacloud/api
52
- - name: Build
+ - name: Tests with coverage
53
54
- python -m build
+ coverage run -m unittest discover -v -s "./tests" -p "test*.py"
55
- name: Publish
56
uses: pypa/gh-action-pypi-publish@release/v1
57
with:
prismacloud/api/version.py
@@ -1 +1 @@
1
-version = "5.2.24"
+version = "5.3.0"
requirements_test.txt
@@ -1,2 +1,3 @@
coverage==7.6.10
2
responses==0.25.3
3
+update_checker
0 commit comments