Path: csiph.com!goblin3!goblin1!goblin.stu.neva.ru!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python3': 0.05; 'executed': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; '--version': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'subject:gui': 0.16; 'subject:run': 0.16; 'sudo': 0.16; 'wrote:': 0.16; 'tests': 0.18; '(not': 0.20; 'ok.': 0.22; 'tried': 0.24; 'install': 0.25; 'header :User-Agent:1': 0.26; "doesn't": 0.26; 'header:X-Complaints-To:1': 0.26; 'subject:users': 0.29; 'error.': 0.31; 'run': 0.33; 'ubuntu': 0.33; 'subject:please': 0.35; 'but': 0.36; 'there': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'why': 0.39; 'test': 0.39; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'default': 0.61; 'strange': 0.63; "'test'": 0.84; 'apt-get': 0.84; 'cecil': 0.84; 'westerhof': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Linux users: please run gui tests Date: Fri, 07 Aug 2015 11:15:33 +0200 Organization: None References: <87wpx7fsb9.fsf@Equus.decebal.nl> <87si7vfqwn.fsf@Equus.decebal.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p57bd960d.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1438938947 news.xs4all.nl 2872 [2001:888:2000:d::a6]:52176 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:95114 Cecil Westerhof wrote: >> python3 --version >> python3 -m test -ugui test_tk test_ttk_guionly test_idle >> >> This gives: >> Python 3.4.1 >> [1/3] test_tk >> [2/3] test_ttk_guionly >> [3/3] test_idle >> All 3 tests OK. >> >> This was on openSUSE 13.2. >> >> I also tried to run it on Debian, but there I get: >> No moduke named test.__main__; 'test' is a package and cannot be >> directly executed > > I also tried it on an Ubuntu system: there I got the same error. (Not > very strange because it is a Debian derivative.) By default Debian doesn't install the test suite -- that's why you cannot run it ;) Install it with $ sudo apt-get install libpython3.4-testsuite and then try again.