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
Copy file name to clipboardExpand all lines: README.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ Our goal is to have unit tests which rely on Selenium (a library that helps simu
162
162
163
163
**To run tests:**
164
164
165
-
* Make sure the directory containing the ChromeDriver executable is in your ``PATH`` environment variable. e.g. ``PATH=$PATH:path/to/chromedriver`` at your command line (or edit your ``.bash_profile``).
165
+
* Make sure the directory containing the PhantomJS executable is in your ``PATH`` environment variable. e.g. ``PATH=$PATH:path/to/virtualenv/directory/where/it/is/here`` at your command line (or edit your ``.bash_profile``). It should live in the site-packages/selenium/webdriver/ directory of your virtualenv.
166
166
167
167
* Check out the existing tests, e.g. the ``test_question.py`` file that tests the Question directive, which you can find at the path ``/runestone/question/test/test_question.py``, for an example.
# This file defines the configuration for a CodeChat project. In addition to allowing standard JSON objects, it also allows Python-style comments and any valid Python literal.
5
+
#
6
+
# The file must contain a single dict, with the following keys:
7
+
{
8
+
# ``source_path``: optional; defaults to ``.``. A path to the root of the source tree. Relative paths are rooted in the directory containing this file.
9
+
"source_path": ".",
10
+
11
+
# ``output_path``: required. A path to the root of the HTML output produced by this renderer. Relative paths are rooted in the directory containing this file.
12
+
"output_path": "build/RunestoneComponents",
13
+
14
+
# ``args``: required. A list of arguments to invoke the renderer. Each element of the list must be a string. Each string may optionally contain the following replacement values:
15
+
#
16
+
# - ``{project_path}``: an absolute path to the directory containing this file.
17
+
# - ``{source_path}``: the ``source_path`` above, but as an absolute path.
18
+
# - ``{output_path}``: the ``output_path`` above, but as an absolute path.
19
+
"args": ["runestone", "build"],
20
+
21
+
# ``html_ext``: optional; defaults to ``.html``. The extension used by this renderer when generating HTML files.
0 commit comments