Skip to content

Commit 82f5839

Browse files
committed
Update tox.ini to be in line with marshmallow
1 parent bcb1397 commit 82f5839

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Contributions to the documentation are welcome. Documentation is written in `reS
122122

123123
To build docs and run in watch mode: ::
124124

125-
$ tox -e watch-docs
125+
$ tox -e docs-serve
126126

127127
.. _Sphinx: http://sphinx.pocoo.org/
128128

src/textblob/blob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def sentiment_assessments(self):
447447
subjectivity scores for the assessed tokens.
448448
449449
:rtype: namedtuple of the form ``Sentiment(polarity, subjectivity,
450-
assessments)``
450+
assessments)``
451451
"""
452452
return self.analyzer.analyze(self.raw, keep_assessments=True)
453453

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ commands = sphinx-build docs/ docs/_build {posargs}
2323

2424
; Below tasks are for development only (not run in CI)
2525

26-
[testenv:watch-docs]
26+
[testenv:docs-serve]
2727
deps = sphinx-autobuild
2828
extras = docs
29-
commands = sphinx-autobuild --open-browser docs/ docs/_build {posargs} --watch src/textblob --delay 2
29+
commands = sphinx-autobuild --port=0 --open-browser --delay=2 docs/ docs/_build {posargs} --watch src --watch CONTRIBUTING.rst --watch README.rst
3030

31-
[testenv:watch-readme]
31+
[testenv:readme-serve]
3232
deps = restview
3333
skip_install = true
3434
commands = restview README.rst
35+

0 commit comments

Comments
 (0)