diff --git a/README.md b/README.md index dbd1c2c..4f64c53 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ Quick start ----------- ```bash $ pip install magneto -$ magneto --apk-path --app-package --app-activity +$ magneto init calc +$ magneto run tests/ ``` diff --git a/docs/creating_tests.rst b/docs/creating_tests.rst index d675a52..c385974 100644 --- a/docs/creating_tests.rst +++ b/docs/creating_tests.rst @@ -66,7 +66,7 @@ Magneto allows attaching tags to test cases and tests alike, using ``@tag.TAG_NA Now I can choose to run only ``CardsTestCase`` using ``-k cards``:: - $ magneto ui_tests/ -k cards + $ magneto run ui_tests/ -k cards .. _skipping: diff --git a/docs/demo.rst b/docs/demo.rst index cc0e80a..5fe4659 100644 --- a/docs/demo.rst +++ b/docs/demo.rst @@ -6,7 +6,7 @@ Run the demo In magneto-demo-calc_ you can find the Lollipop calculator app. Clone or download Magneto source from Github__ and run the following terminal command:: - magneto tests/ + $ magneto run tests/ .. _magneto-demo-calc: https://github.com/EverythingMe/magneto-demo-calc __ magneto-demo-calc_ \ No newline at end of file diff --git a/docs/setup.rst b/docs/setup.rst index dafc3e4..e0119d3 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -19,7 +19,7 @@ Running tests :: - $ magneto --apk-path --apk-package --app-activity + $ magneto run --apk-path --apk-package --app-activity Required: diff --git a/setup.py b/setup.py index fb2b8f5..f8a58ba 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='magneto', - version='0.2.1', + version='0.3', description='Magneto - Command your droids.', author='EverythingMe', author_email='automation@everything.me',