Skip to content

Commit 3049494

Browse files
authored
Merge pull request #89 from Anurag-Nagpal/fix_ci
fix ci actions
2 parents 7529fc2 + 075aedb commit 3049494

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
- name: Test with tox
4040
env:
4141
TOXENV: ${{ matrix.toxenv }}
42-
run: tox
42+
run: tox -v

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ This library has been tested against the following devices and firmwares:
118118
| TVS-1282 | 5.0.1 | |
119119
+--------------+------------------------+---------------------------------------+
120120

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

123123
Other QNAP devices using these QTS firmwares should probably work fine, as should the devices listed above on newer firmwares.
124124
If you encounter any compatibility issues, please let us know (or better yet, contribute a patch!)

qnapstats/qnap_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def get_volumes(self):
191191

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

196196
if resp is None:
197197
return None

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ commands =
2323
pylint qnapstats
2424
pydocstyle qnapstats
2525
python tests/test-models.py
26-
deps = -Ur{toxinidir}/requirements.testing.txt
26+
deps = -r{toxinidir}/requirements.testing.txt
2727

2828
[testenv:desc]
2929
deps =

0 commit comments

Comments
 (0)