Skip to content

Commit

Permalink
Still trying to figure out why RTD isnt building
Browse files Browse the repository at this point in the history
  • Loading branch information
rbpatt2019 committed Jul 17, 2020
1 parent a7c0702 commit 63d227e
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions docs/source/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ ToDonePy command-line interface (CLI)

Root Command: to
----------------
.. automodule:: todonepy.commands.to
.. automodule:: commands.to
:members:
:show-inheritance:

Sub-Command: do
---------------
.. automodule:: todonepy.subcommands.do
.. automodule:: subcommands.do
:members:
:show-inheritance:

Sub-Command: doing
------------------
.. automodule:: todonepy.subcommands.doing
.. automodule:: subcommands.doing
:members:
:show-inheritance:

Sub-Command: done
-----------------
.. automodule:: todonepy.subcommands.done
.. automodule:: subcommands.done
:members:
:show-inheritance:
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
wd = os.path.dirname(__file__)
todonepy = os.path.abspath(os.path.join(wd, '../../todonepy/'))
test = os.path.abspath(os.path.join(wd, '../../tests/'))
td = os.path.abspath(os.path.join(wd, '../..'))

sys.path.insert(0, td)
sys.path.insert(0, test)
sys.path.insert(0, todonepy)

Expand Down
2 changes: 1 addition & 1 deletion docs/source/filer.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The `Filer` Class
=================

.. automodule:: todonepy.helpers.filer
.. automodule:: helpers.filer
:members:
:show-inheritance:
4 changes: 2 additions & 2 deletions docs/source/helpers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ToDonePy Helper Functions

Function: itemsetter
--------------------
.. automodule:: todonepy.helpers.itemsetter
.. automodule:: helpers.itemsetter
:members:
:show-inheritance:

Function: external_command
--------------------------
.. automodule:: todonepy.helpers.external_command
.. automodule:: helpers.external_command
:members:
:show-inheritance:
2 changes: 1 addition & 1 deletion docs/source/test_do.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Testing the do sub-command
==========================

.. automodule:: tests.test_do
.. automodule:: test_do
:members:
:show-inheritance:
2 changes: 1 addition & 1 deletion docs/source/test_doing.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Testing the doing sub-command
=============================

.. automodule:: tests.test_doing
.. automodule:: test_doing
:members:
:show-inheritance:
2 changes: 1 addition & 1 deletion docs/source/test_done.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Testing the done sub-command
============================

.. automodule:: tests.test_done
.. automodule:: test_done
:members:
:show-inheritance:
2 changes: 1 addition & 1 deletion docs/source/test_filer.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Testing the Filer class
=======================

.. automodule:: tests.test_filer
.. automodule:: test_filer
:members:
:show-inheritance:
4 changes: 2 additions & 2 deletions docs/source/test_helpers.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Testing Helper Functions
========================

.. automodule:: tests.test_external_command
.. automodule:: test_external_command
:members:
:show-inheritance:

.. automodule:: tests.test_itemsetter
.. automodule:: test_itemsetter
:members:
:show-inheritance:
2 changes: 1 addition & 1 deletion docs/source/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Testing

Configurations
---------------
.. automodule:: tests.conftest
.. automodule:: conftest
:members:
:show-inheritance:

Expand Down

0 comments on commit 63d227e

Please sign in to comment.