Skip to content

Commit

Permalink
Merge pull request #89 from Anurag-Nagpal/fix_ci
Browse files Browse the repository at this point in the history
fix ci actions
  • Loading branch information
colinodell authored Oct 8, 2023
2 parents 7529fc2 + 075aedb commit 3049494
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
- name: Test with tox
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
run: tox -v
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ This library has been tested against the following devices and firmwares:
| TVS-1282 | 5.0.1 | |
+--------------+------------------------+---------------------------------------+

⚠️ *QuTS is not currently supported - see [issue #84](https://github.com/colinodell/python-qnapstats/issues/84)
⚠️ *QuTS is not currently supported - see [issue #84](https://github.com/colinodell/python-qnapstats/issues/84)*

Other QNAP devices using these QTS firmwares should probably work fine, as should the devices listed above on newer firmwares.
If you encounter any compatibility issues, please let us know (or better yet, contribute a patch!)
Expand Down
2 changes: 1 addition & 1 deletion qnapstats/qnap_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def get_volumes(self):

def get_smart_disk_health(self):
"""Obtain SMART information about each disk."""
resp = self._get_url("disk/qsmart.cgi?func=all_hd_data", force_list=("entry"))
resp = self._get_url("disk/qsmart.cgi?func=all_hd_data", force_list="entry")

if resp is None:
return None
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ commands =
pylint qnapstats
pydocstyle qnapstats
python tests/test-models.py
deps = -Ur{toxinidir}/requirements.testing.txt
deps = -r{toxinidir}/requirements.testing.txt

[testenv:desc]
deps =
Expand Down

0 comments on commit 3049494

Please sign in to comment.