You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -30,7 +30,7 @@ Note: If you update the conda package, you may have to redo the pip install. Wi
30
30
31
31
## Run the example
32
32
33
-
This is an example of the supplimentary functions in the utils directory (github_tutorial/utils) and the main function in the main_functions directory (github_tutorial/main_functions).
33
+
This is an example of the supplimentary functions in the utils directory (python_github_tutorial/utils) and the main function in the main_functions directory (python_github_tutorial/main_functions).
34
34
35
35
The example is located here 'examples_to_run/examples.py'. The instructions to run it are provided below:
36
36
@@ -47,28 +47,28 @@ When using Visual Studios Code (VScode), the '# %%' above each section makes it
47
47
48
48
## Run the test cases (unit tests) using pytest
49
49
50
-
The github_tutorial software tests the installation using `pytest <https://docs.pytest.org/en/stable/>`_.
50
+
The python_github_tutorial software tests the installation using `pytest <https://docs.pytest.org/en/stable/>`_.
51
51
The unit tests via ``pytest`` ensure that the code is build properly, running correctly and producing
52
52
accurate results.
53
53
54
-
To perform these tests (unit tests) for the github_tutorial package, please run the following commands
55
-
from the ``github_tutorial/tests`` directory:
54
+
To perform these tests (unit tests) for the python_github_tutorial package, please run the following commands
55
+
from the ``python_github_tutorial/tests`` directory:
56
56
57
57
Run all the tests:
58
58
59
-
`cd github_tutorial/tests`
59
+
`cd python_github_tutorial/tests`
60
60
61
61
`pytest -v`
62
62
63
63
Run individual test on 'test_math.py':
64
64
65
-
`cd github_tutorial/tests`
65
+
`cd python_github_tutorial/tests`
66
66
67
67
`pytest test_math.py`
68
68
69
69
Run individual test on 'test_main_functions.py':
70
70
71
-
`cd github_tutorial/tests`
71
+
`cd python_github_tutorial/tests`
72
72
73
73
`pytest test_main_functions.py`
74
74
@@ -78,9 +78,9 @@ Building these HTML files locally via sphinx, which will allow you to access the
78
78
local internet browsing application or HTML viewer (chrome, safari, VScode, etc.).
79
79
The HTML files will be located in the ``docs/_build/html`` directory after they are built.
80
80
81
-
The github_tutorial utilizes `sphinx <https://www.sphinx-doc.org/en/master/index.html>`_ to construct the documentation.
81
+
The python_github_tutorial utilizes `sphinx <https://www.sphinx-doc.org/en/master/index.html>`_ to construct the documentation.
82
82
The user can build the documentation locally by executing the following command from the ``docs`` directory:
0 commit comments