Skip to content
Snippets Groups Projects
Commit e170f607 authored by Donald Stufft's avatar Donald Stufft
Browse files

Make it so the docs build without an install

parent f6113248
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ env:
- TOXENV=py32 SODIUM_INSTALL=system CC=clang
- TOXENV=py33 SODIUM_INSTALL=system CC=clang
- TOXENV=pypy SODIUM_INSTALL=system CC=clang
- docs
install:
# Add the PyPy repository
......
......@@ -194,6 +194,9 @@ class Mock(object):
else:
return Mock()
def __floordiv__(self, other):
return Mock()
MOCK_MODULES = [
"cffi", "cffi.vengine_cpy", "cffi.vengine_gen", "cffi.verifier",
]
......
......@@ -60,7 +60,7 @@ Reference
.. autoclass:: nacl.signing.SignedMessage
:members:
.. autoclass:: nacl.signing.BadSignatureError
.. autoclass:: nacl.exceptions.BadSignatureError
:members:
......
......@@ -13,7 +13,6 @@ commands =
[testenv:docs]
deps =
sphinx
cffi
basepython = python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment