{ "info": { "author": "Domen Kozar", "author_email": "domen@dev.si", "bugtrack_url": null, "classifiers": [], "description": "Simple ``nose`` plugin that enables developers to run subset of collected tests\r\nto spare some waiting time for better things. \r\n\r\nSupports Python 2.x and 3.x, see ``.travis.yml`` for specific versions being tested.\r\n\r\n\r\nUsage\r\n-----\r\n\r\nExamples of using the plugin on the plugin package itself:\r\n\r\nRun all tests::\r\n\r\n $ nosetests -v\r\n\r\n test_configure_complex (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_empty_string (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_case_insensitive (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_negative (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_unselected (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_unselected_override (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_wildcard (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_options (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_prepareTestCase_exclude (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_prepareTestCase_select (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 13 tests in 0.008s\r\n\r\n OK\r\n\r\nOnly run tests with keyword `configure`::\r\n\r\n $ nosetests -v -t configure\r\n\r\n test_configure_complex (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_empty_string (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 4 tests in 0.006s\r\n\r\n OK\r\n\r\nCase insensitive::\r\n\r\n $ nosetests -v -t CONFIGURE\r\n\r\n test_configure_complex (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_empty_string (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 4 tests in 0.006s\r\n\r\n OK\r\n\r\nOnly run tests with keyword `configure` but exclude tests with keyword `complex`::\r\n\r\n $ nosetests -v -t configure -e complex\r\n\r\n test_configure_empty_string (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 3 tests in 0.006s\r\n\r\n OK\r\n\r\nMultiple keywords resolve to ``OR`` operation::\r\n\r\n $ nosetests -v -t none -t simple\r\n\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_is_selected_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 3 tests in 0.018s\r\n\r\n OK\r\n\r\n\r\nTo just exclude some tests, use `-e` which is provided by `nose` itself::\r\n\r\n $ nosetests -v -e is_selected\r\n\r\n test_configure_complex (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_empty_string (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_none (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_configure_simple (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_options (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_prepareTestCase_exclude (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n test_prepareTestCase_select (noseselecttests.tests.NoseSelectPluginTest) ... ok\r\n\r\n ----------------------------------------------------------------------\r\n Ran 7 tests in 0.005s\r\n\r\n OK\r\n\r\n\r\nHistory\r\n-------\r\n\r\n0.5 (2016-02-22)\r\n================\r\n\r\n- Python 3 support\r\n [Domen Ko\u017ear]\r\n\r\n\r\n0.4 (2013-08-27)\r\n================\r\n\r\n- Fixed bug to avoid running class fixtures if a test is not selected.\r\n [Philippe Ombredanne]\r\n\r\n- Added PluginTester tests\r\n [Philippe Ombredanne]\r\n\r\n\r\n0.3 (2012/12/29)\r\n================\r\n\r\n- Removed code for excluding tests (-e already does that)\r\n [Domen Ko\u017ear]\r\n\r\n- Don't select all tests that have None as test name (could be a module level SkipTest)\r\n [Domen Ko\u017ear]\r\n\r\n\r\n0.2 (2012/07/27)\r\n================\r\n\r\n- Report SyntaxErrors instead of crashing\r\n [Domen Ko\u017ear]\r\n\r\n\r\n0.1 (2012/07/08)\r\n================\r\n\r\n- initial release\r\n [Domen Ko\u017ear]\r\n\r\n\r\nnose-selecttests Copyright (c) 2012, Domen Ko\u017ear\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions\r\nare met:\r\n\r\n1. Redistributions of source code must retain the above copyright\r\n notice, this list of conditions and the following disclaimer.\r\n2. Redistributions in binary form must reproduce the above copyright\r\n notice, this list of conditions and the following disclaimer in the\r\n documentation and/or other materials provided with the distribution.\r\n3. The name of the author may not be used to endorse or promote products\r\n derived from this software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR\r\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\r\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\r\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/iElectric/nose-selecttests/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "nose-selecttests", "package_url": "https://pypi.org/project/nose-selecttests/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/nose-selecttests/", "project_urls": { "Homepage": "http://github.com/iElectric/nose-selecttests/" }, "release_url": "https://pypi.org/project/nose-selecttests/0.5/", "requires_dist": [ "nose", "six" ], "requires_python": "", "summary": "Specify whitelist of keywords for tests to be run by nose", "version": "0.5" }, "last_serial": 1970461, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "df77b7d73819b8825e706badfdcd7855", "sha256": "2bbc67cf91e662fc1c81bbb0b67ab115cc0dae0c24a3b1a6c39809a56fa8cf70" }, "downloads": -1, "filename": "nose-selecttests-0.1.tar.gz", "has_sig": false, "md5_digest": "df77b7d73819b8825e706badfdcd7855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2428, "upload_time": "2012-07-08T21:48:30", "url": "https://files.pythonhosted.org/packages/88/a4/9775239df8adc284ca7955a2acf01a95f3ca37c51018904e73481efb0769/nose-selecttests-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "72ac0c52aa014d468c407e4817fb6822", "sha256": "8c74c2dbd12a8d9a6976db8e154a7695324667b40ef4260b0af9afc1562051d6" }, "downloads": -1, "filename": "nose-selecttests-0.2.tar.gz", "has_sig": false, "md5_digest": "72ac0c52aa014d468c407e4817fb6822", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2514, "upload_time": "2012-07-27T23:01:52", "url": "https://files.pythonhosted.org/packages/5e/06/868ea810da4dae9e9ffe57999e2b47bdf86987f93682514494466a4e77bc/nose-selecttests-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "2616bc38e329552e87c66d969439726a", "sha256": "23173cbfcaa4dcdb50b3520492aed8b6024b4fce25216124db516d577cb3df16" }, "downloads": -1, "filename": "nose-selecttests-0.3.zip", "has_sig": false, "md5_digest": "2616bc38e329552e87c66d969439726a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6986, "upload_time": "2012-12-29T16:52:53", "url": "https://files.pythonhosted.org/packages/20/39/c2859935689fb198b2a5cedec1b658fa1bdc7309eae87098017180f2f5de/nose-selecttests-0.3.zip" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "5572d6cc43ab90e59927a3895dbea60a", "sha256": "c59e556c64b6edb36018bce7a110e5607a2dd1072fe7971a8a1d613dee73f951" }, "downloads": -1, "filename": "nose-selecttests-0.4.zip", "has_sig": false, "md5_digest": "5572d6cc43ab90e59927a3895dbea60a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8169, "upload_time": "2013-08-27T15:38:35", "url": "https://files.pythonhosted.org/packages/aa/3c/f689aa1f0ce02f356680f12d30655bdc4a2cb0c627a1e5ed593a4f561be7/nose-selecttests-0.4.zip" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "79d9e931bd70e5bceb1ad1263c30c91e", "sha256": "b652247c144d09441589bed9ba47081b054ae92f4a10692074b343a578289e00" }, "downloads": -1, "filename": "nose_selecttests-0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "79d9e931bd70e5bceb1ad1263c30c91e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 8123, "upload_time": "2016-02-22T22:00:48", "url": "https://files.pythonhosted.org/packages/60/37/4bd8de1a05ddd9afc202e0678d104d11687ca695645ebcd0a997e3ce8751/nose_selecttests-0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6882c36f728039b647d96baef06f1606", "sha256": "0394097d569831750a8b9a8caf7a41140261a44d37af782c3299a93f71e36880" }, "downloads": -1, "filename": "nose-selecttests-0.5.tar.gz", "has_sig": false, "md5_digest": "6882c36f728039b647d96baef06f1606", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6520, "upload_time": "2016-02-22T22:00:58", "url": "https://files.pythonhosted.org/packages/3d/74/d4c0213ec6376c6182f222c1b41405d5ad353f1d5cfa6e0ff000e9217ff7/nose-selecttests-0.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "79d9e931bd70e5bceb1ad1263c30c91e", "sha256": "b652247c144d09441589bed9ba47081b054ae92f4a10692074b343a578289e00" }, "downloads": -1, "filename": "nose_selecttests-0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "79d9e931bd70e5bceb1ad1263c30c91e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 8123, "upload_time": "2016-02-22T22:00:48", "url": "https://files.pythonhosted.org/packages/60/37/4bd8de1a05ddd9afc202e0678d104d11687ca695645ebcd0a997e3ce8751/nose_selecttests-0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6882c36f728039b647d96baef06f1606", "sha256": "0394097d569831750a8b9a8caf7a41140261a44d37af782c3299a93f71e36880" }, "downloads": -1, "filename": "nose-selecttests-0.5.tar.gz", "has_sig": false, "md5_digest": "6882c36f728039b647d96baef06f1606", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6520, "upload_time": "2016-02-22T22:00:58", "url": "https://files.pythonhosted.org/packages/3d/74/d4c0213ec6376c6182f222c1b41405d5ad353f1d5cfa6e0ff000e9217ff7/nose-selecttests-0.5.tar.gz" } ] }