Skip to content

Commit f5d2160

Browse files
committed
fix typo: py.test instead of pytest
1 parent dc91e32 commit f5d2160

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,18 @@ if you are using an Anaconda distribution, with `conda`.
6262

6363
## Run the Test Suite
6464

65-
Use `pytest` to run the test suite:
65+
Use `py.test` to run the test suite:
6666

6767
cd /my/projects/jupyter_client/
68-
pytest
68+
py.test
6969

7070
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
7272
run just the tests from a single file by providing the path to the file.
7373
For example:
7474

7575
cd /my/projects/jupyter_client
76-
pytest jupyter_client/tests/test_session.py
76+
py.test jupyter_client/tests/test_session.py
7777

7878
## Build the Documentation
7979

0 commit comments

Comments
 (0)