aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/README.md
diff options
context:
space:
mode:
authorGravatar Tamir Duberstein <tamird@gmail.com>2015-01-13 14:47:32 -0500
committerGravatar Tamir Duberstein <tamird@gmail.com>2015-04-10 19:43:51 -0400
commit9f42f5f4a423b923f7b07ae8c5e8db4943df49c6 (patch)
treefd376cb74cae08e5bc77a8f23a797d8d5f49cc44 /python/README.md
parentdab96f19ee2cb1dab5a403987329326ee23c2191 (diff)
[PYTHON] Drop dependency on 'google.apputils'.
Use stdlib's 'unittest' instead.
Diffstat (limited to 'python/README.md')
-rw-r--r--python/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/README.md b/python/README.md
index c63191a7..1b5b9dff 100644
--- a/python/README.md
+++ b/python/README.md
@@ -50,7 +50,7 @@ Installation
4) Build and run the tests:
$ python setup.py build
- $ python setup.py google_test
+ $ python setup.py test
To build, test, and use the C++ implementation, you must first compile
libprotobuf.so:
@@ -82,7 +82,7 @@ Installation
$ python setup.py build --cpp_implementation
Then run the tests like so:
- $ python setup.py google_test --cpp_implementation
+ $ python setup.py test --cpp_implementation
If some tests fail, this library may not work correctly on your
system. Continue at your own risk.