From 9874662a66726a813a0b563d94da49b172f44a79 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Tue, 29 Jul 2014 11:27:21 -0500 Subject: Update the test information on README --- README.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 9090d7c..88e413b 100644 --- a/README.rst +++ b/README.rst @@ -11,5 +11,7 @@ More info: https://leap.se running tests ------------- -* nosetests --with-progressive leap.mail.imap.test_imap +You'll need to have installed nose_progressive + +* nosetests --with-progressive leap.mail.imap.tests.test_imap * trial leap.mail.smtp -- cgit v1.2.3 From 7729355e679bb8f7e2cef2caf6219664a333006f Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 26 Aug 2014 17:42:39 -0500 Subject: fix and migrate tests to trial We cannot use setUpClass when running tests with trial. But, after all, it's not *so* expensive to initialize a new soledad instance (since we'll be mostly using the memstore for the tests). --- README.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 88e413b..f758a66 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,17 @@ More info: https://leap.se running tests ------------- -You'll need to have installed nose_progressive +Use trial to run the test suite. -* nosetests --with-progressive leap.mail.imap.tests.test_imap -* trial leap.mail.smtp +``` +trial leap.mail +``` + +... and all its goodies. To run all imap tests in a loop until some of them +fails: + +``` +trial -u leap.mail.imap +``` + +Read the *trial* manpage for more options . -- cgit v1.2.3 From e6f6962a93d2a76a18c4922cc9c0c7f12cc1718d Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 9 Sep 2014 10:18:42 -0500 Subject: fix README syntax --- README.rst | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index f758a66..df75218 100644 --- a/README.rst +++ b/README.rst @@ -11,17 +11,11 @@ More info: https://leap.se running tests ------------- -Use trial to run the test suite. - -``` -trial leap.mail -``` +Use trial to run the test suite:: + trial leap.mail ... and all its goodies. To run all imap tests in a loop until some of them -fails: - -``` -trial -u leap.mail.imap -``` +fails:: + trial -u leap.mail.imap Read the *trial* manpage for more options . -- cgit v1.2.3 From f9aaefa38582e98fae146f4a3eb0a2939ed93cef Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 9 Sep 2014 10:56:28 -0500 Subject: fix syntax highlighting --- README.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'README.rst') diff --git a/README.rst b/README.rst index df75218..52d4366 100644 --- a/README.rst +++ b/README.rst @@ -12,10 +12,12 @@ running tests ------------- Use trial to run the test suite:: + trial leap.mail ... and all its goodies. To run all imap tests in a loop until some of them fails:: + trial -u leap.mail.imap Read the *trial* manpage for more options . -- cgit v1.2.3 From 72dcca62d9b673bedac1900ed1265a67777f2c88 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 9 Sep 2014 11:13:27 -0500 Subject: add rtd badge --- README.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 52d4366..679a99c 100644 --- a/README.rst +++ b/README.rst @@ -5,6 +5,8 @@ Mail services for the LEAP Client. .. image:: https://pypip.in/v/leap.mail/badge.png :target: https://crate.io/packages/leap.mail +.. image:: https://readthedocs.org/projects/leapmail/badge/?version=latest + :target: https://readthedocs.org/projects/leapmail/?badge=latest More info: https://leap.se -- cgit v1.2.3 From 6d35b3cdf749f1cf8dbc492185426f9385ed6fbf Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 9 Sep 2014 11:16:47 -0500 Subject: fix rtd link --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 679a99c..317389a 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,8 @@ Mail services for the LEAP Client. :target: https://crate.io/packages/leap.mail .. image:: https://readthedocs.org/projects/leapmail/badge/?version=latest - :target: https://readthedocs.org/projects/leapmail/?badge=latest + :target: http://leapmail.readthedocs.org/en/latest/ + :alt: Documentation Status More info: https://leap.se -- cgit v1.2.3