Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0f699d4

Browse filesBrowse files
committed
test instructions typo
1 parent a97c888 commit 0f699d4
Copy full SHA for 0f699d4

File tree

Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed

‎contributing.md

Copy file name to clipboardExpand all lines: contributing.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Once you've made your changes (and hopefully written some tests...), make that p
5353
##Suggestions
5454

5555
###Local Python
56-
Setting up Python versions that *don't* require you to use `sudo` is a good idea. In addition, the core Python on your machine may not be the Python that we've developed in! Here are some nice guides for Mac, Windows, and Linux:
56+
Setting up Python versions that *don't* require you to use `sudo` is a good idea. In addition, the core Python on your machine may not be the Python that we've developed in! Here are some nice guides for Mac, Windows, and Linux:
5757
- http://docs.python-guide.org/en/latest/starting/install/osx/
5858
- http://docs.python-guide.org/en/latest/starting/install/win/
5959
- http://docs.python-guide.org/en/latest/starting/install/linux/
@@ -82,7 +82,7 @@ export PYTHONPATH="/path/to/local/repo:$PYTHONPATH"
8282

8383
##Dependencies
8484

85-
There's a short list of core dependencies you'll need installed in your Python environment to have any sort of fun with Plotly's Python API (see `requirements.txt`). Additionally, you're likely to have even more fun if you install some other requirements (see `optional-requirements.txt`).
85+
There's a short list of core dependencies you'll need installed in your Python environment to have any sort of fun with Plotly's Python API (see `requirements.txt`). Additionally, you're likely to have even more fun if you install some other requirements (see `optional-requirements.txt`).
8686

8787
###Dependencies and Virtualenv
8888

@@ -121,18 +121,18 @@ nosetests -w plotly/tests -v
121121
Either of those will run *every* test we've written for the Python API. You can get more granular by running something like:
122122

123123
```bash
124-
nosetests -w plotly/tests/test_plotly
124+
nosetests -w plotly/tests/test_core/test_plotly
125125
```
126126

127127
... or even more granular by running something like:
128128

129129
```bash
130-
nosetests plotly/tests/test_plotly/test_plot.py
130+
nosetests plotly/tests/test_core/test_plotly/test_plot.py
131131
```
132132

133133
###Writing Tests
134134

135-
You're *strongly* encouraged to write tests that check your added functionality.
135+
You're *strongly* encouraged to write tests that check your added functionality.
136136

137137
When you write a new test anywhere under the `tests` directory, if your PR gets accepted, that test will run in a virtual machine to ensure that future changes don't break your contributions!
138138

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.