File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,18 +62,18 @@ if you are using an Anaconda distribution, with `conda`.
62
62
63
63
## Run the Test Suite
64
64
65
- Use ` pytest ` to run the test suite:
65
+ Use ` py.test ` to run the test suite:
66
66
67
67
cd /my/projects/jupyter_client/
68
- pytest
68
+ py.test
69
69
70
70
The full test suite takes a while. During development, you'll probably prefer
71
- to run only the tests relevant to your changes. You can tell ` pytest ` to
71
+ to run only the tests relevant to your changes. You can tell ` py.test ` to
72
72
run just the tests from a single file by providing the path to the file.
73
73
For example:
74
74
75
75
cd /my/projects/jupyter_client
76
- pytest jupyter_client/tests/test_session.py
76
+ py.test jupyter_client/tests/test_session.py
77
77
78
78
## Build the Documentation
79
79
You can’t perform that action at this time.
0 commit comments