You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(9) |
Oct
(7) |
Nov
|
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(11) |
2007 |
Jan
(16) |
Feb
(3) |
Mar
(3) |
Apr
(2) |
May
(10) |
Jun
|
Jul
|
Aug
(1) |
Sep
(5) |
Oct
(2) |
Nov
(16) |
Dec
(3) |
2008 |
Jan
(1) |
Feb
|
Mar
(10) |
Apr
(2) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(8) |
Sep
(3) |
Oct
(1) |
Nov
(15) |
Dec
(16) |
2009 |
Jan
(5) |
Feb
(9) |
Mar
(21) |
Apr
(12) |
May
(12) |
Jun
(2) |
Jul
|
Aug
(6) |
Sep
(10) |
Oct
(2) |
Nov
(6) |
Dec
(7) |
2010 |
Jan
(20) |
Feb
(21) |
Mar
(20) |
Apr
(8) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
(9) |
Oct
(4) |
Nov
(7) |
Dec
(5) |
2011 |
Jan
(15) |
Feb
(4) |
Mar
(20) |
Apr
(13) |
May
(10) |
Jun
(7) |
Jul
(8) |
Aug
(13) |
Sep
(1) |
Oct
(4) |
Nov
(9) |
Dec
(4) |
2012 |
Jan
|
Feb
(9) |
Mar
(8) |
Apr
(2) |
May
(6) |
Jun
(6) |
Jul
(8) |
Aug
(8) |
Sep
(3) |
Oct
(16) |
Nov
(6) |
Dec
(3) |
2013 |
Jan
(7) |
Feb
(10) |
Mar
(5) |
Apr
(3) |
May
|
Jun
|
Jul
(6) |
Aug
(30) |
Sep
(24) |
Oct
(10) |
Nov
(10) |
Dec
|
2014 |
Jan
(8) |
Feb
|
Mar
(13) |
Apr
(7) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
(2) |
Mar
(12) |
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
(4) |
Sep
(13) |
Oct
(5) |
Nov
|
Dec
(2) |
2016 |
Jan
(13) |
Feb
(7) |
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(4) |
Jul
(3) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
(3) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(6) |
Nov
(2) |
Dec
|
2020 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(3) |
Jun
(5) |
Jul
|
Aug
(6) |
Sep
(7) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2021 |
Jan
(3) |
Feb
(1) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2022 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(7) |
Sep
(7) |
Oct
(5) |
Nov
(2) |
Dec
|
2023 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
(4) |
Dec
(1) |
2024 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mike S. <ma...@mi...> - 2021-05-18 07:51:32
|
Hi Geoff! Thanks for that: I've changed the first line of texttest to #!/usr/bin/python3 And as this is linked to python3.6 then texttest runs, and runs the slave process correctly. As the "main" python connects to python2.7 then my SUT runs correctly. No need for virtual environments nor to set "interpreters". I will put #!/usr/bin/python2 in my own code. I also wanted to add that texttest is extremely useful as the a testing framework for the kind of command-line run-to-completion program I am writing (and using), instead of classic unit testing, as my program deals with arrays of say 48x10000, so if I need to verify any values, or see what changes happen I can just write them out to csv and include them in the files collected by the test and see if they are the same, or diff and approve as the case may be. Big arrays do not lend themselves to writing as literals in unit testing code! All the best, Mike On 15/05/2021 16:58, Geoff Bache wrote: > Hi Mike! > > The problem is with TextTest trying to start its own slave process in > order to run itself. So setting "interpreters" won't help, that's a > later stage when it tries to run your system under test. > > TextTest pretty much assumes it will be run as a straightforward > command, not with "python" written explicitly before it. On Linux this > will look for a "python3" command due to "#!/usr/bin/env python3" on > the first line, if your variety of Linux does not have "python3" then > you have a problem. I would suggest making a virtual environment for > TextTest in that case, failing that, change the first line to > correctly identify your python 3.6. > > You can see what TextTest is trying to run by checking the "Run Info" > tab in the dynamic GUI. Down at the bottom you have the "Slave > Command" entry. You can also simplify the run setup by checking "Run > tests sequentially", this will run in the same process without > starting a slave. > > Hope that helps, anyway. > > Regards, > Geoff > > On Fri, May 14, 2021 at 11:59 PM Mike Simms <ma...@mi... > <mailto:ma...@mi...>> wrote: > > Hi Texttesters, > > I have used Texttest a lot in earlier versions, before it was > updated to > python3. > > I'm back working on that same project and the code runs (outside > texttest) under python2.7. > > I have installed Texttest 4.0 7 and have got it to run by using, > in my case: > > python3.6 /home/mike/.local/bin/texttest & > > Texttest starts and I can see my tests and configs etc, However, > when I > try to run a test, the window for that test run appears but after > a few > seconds it says: > > Test could not be run : > local job exited > Job ID was 10806 > ---------- Error messages written by local job ---------- > Could not start TextTest due to Python version problems : > TextTest 4.0.7 requires at least Python 3.4.0: found version > 2.7.17. > > I have tried setting this in the SUT application config: > > [interpreters] > python:python2.7 > [end] > > But I get the same result. > > My system is Xubuntu 18.04 bionic LTS. > > Please tell me some things to check or try to help me test my > python2 code. > > Thank you! > > Mike > > > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > <mailto:Tex...@li...> > https://lists.sourceforge.net/lists/listinfo/texttest-users > > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users |
From: Geoff B. <geo...@gm...> - 2021-05-15 14:58:44
|
Hi Mike! The problem is with TextTest trying to start its own slave process in order to run itself. So setting "interpreters" won't help, that's a later stage when it tries to run your system under test. TextTest pretty much assumes it will be run as a straightforward command, not with "python" written explicitly before it. On Linux this will look for a "python3" command due to "#!/usr/bin/env python3" on the first line, if your variety of Linux does not have "python3" then you have a problem. I would suggest making a virtual environment for TextTest in that case, failing that, change the first line to correctly identify your python 3.6. You can see what TextTest is trying to run by checking the "Run Info" tab in the dynamic GUI. Down at the bottom you have the "Slave Command" entry. You can also simplify the run setup by checking "Run tests sequentially", this will run in the same process without starting a slave. Hope that helps, anyway. Regards, Geoff On Fri, May 14, 2021 at 11:59 PM Mike Simms <ma...@mi...> wrote: > Hi Texttesters, > > I have used Texttest a lot in earlier versions, before it was updated to > python3. > > I'm back working on that same project and the code runs (outside > texttest) under python2.7. > > I have installed Texttest 4.0 7 and have got it to run by using, in my > case: > > python3.6 /home/mike/.local/bin/texttest & > > Texttest starts and I can see my tests and configs etc, However, when I > try to run a test, the window for that test run appears but after a few > seconds it says: > > Test could not be run : > local job exited > Job ID was 10806 > ---------- Error messages written by local job ---------- > Could not start TextTest due to Python version problems : > TextTest 4.0.7 requires at least Python 3.4.0: found version 2.7.17. > > I have tried setting this in the SUT application config: > > [interpreters] > python:python2.7 > [end] > > But I get the same result. > > My system is Xubuntu 18.04 bionic LTS. > > Please tell me some things to check or try to help me test my python2 code. > > Thank you! > > Mike > > > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Mike S. <ma...@mi...> - 2021-05-14 21:59:12
|
Hi Texttesters, I have used Texttest a lot in earlier versions, before it was updated to python3. I'm back working on that same project and the code runs (outside texttest) under python2.7. I have installed Texttest 4.0 7 and have got it to run by using, in my case: python3.6 /home/mike/.local/bin/texttest & Texttest starts and I can see my tests and configs etc, However, when I try to run a test, the window for that test run appears but after a few seconds it says: Test could not be run : local job exited Job ID was 10806 ---------- Error messages written by local job ---------- Could not start TextTest due to Python version problems : TextTest 4.0.7 requires at least Python 3.4.0: found version 2.7.17. I have tried setting this in the SUT application config: [interpreters] python:python2.7 [end] But I get the same result. My system is Xubuntu 18.04 bionic LTS. Please tell me some things to check or try to help me test my python2 code. Thank you! Mike |
From: Geoff B. <geo...@gm...> - 2021-02-22 14:13:53
|
Hi all, The point of this release is to try to support Python 3.9, see bug #82 on Github. The Windows version still uses Python 3.8 as we are dependent on the underlying MinGW infrastructure there, which will presumably update sooner or later but hasn't done so yet. Until then, let me know if you find any other issues using Python 3.9 with TextTest. Regards, Geoff |
From: Geoff B. <geo...@gm...> - 2021-01-25 08:15:00
|
Hi Michael, It's possible that Python 3.9 is the cause here. Might be worth seeing if there are changes in the socketserver module for example. A guess is that the shutdown is done automatically in some way and hence the explicit shutdown is not necessary. One suggestion is to try catching and ignoring the exception and see if that helps. Regards, Geoff On Sun, Jan 24, 2021 at 8:43 PM Michael Behrisch <os...@be...> wrote: > Hi Geoff, hi list, > I have problems getting texttest to work on GitHubs CI infrastructure. I > enbaled it for Linux and Windows successfully but when installing it via > pip for MacOS, the log shows: > 2021-01-24 16:43:17,480 - Using local queues for Application > ACTIVITYGEN, version ci > 2021-01-24 16:43:17,480 - Using local queues for Application COMPLEX, > version ci > 2021-01-24 16:43:17,481 - Using local queues for Application DFROUTER, > version ci > ... > 2021-01-24 16:43:17,489 - Using local queues for Application TRACI, > version ci > 2021-01-24 16:43:17,515 - Q: Submitting ACTIVITYGEN.ci test-case help to > default local queue > 2021-01-24 16:43:17,528 - Q: Submitting COMPLEX.ci test-case nefz_hbefa2 > to default local queue > 2021-01-24 16:43:17,539 - Q: Submitting DFROUTER.ci test-case help to > default local queue > ---------------------------------------- > Exception occurred during processing of request from ('127.0.0.1', 49942) > Traceback (most recent call last): > File > "/usr/local/Cellar/python@3.9 > /3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", > line 650, in process_request_thread > self.finish_request(request, client_address) > File > "/usr/local/Cellar/python@3.9 > /3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", > line 360, in finish_request > self.RequestHandlerClass(request, client_address, self) > File > "/usr/local/Cellar/python@3.9 > /3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", > line 720, in __init__ > self.handle() > File > > "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", > line 967, in handle > self.handleMessage(identifier) > File > > "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", > line 990, in handleMessage > self.connection.shutdown(socket.SHUT_RDWR) > OSError: [Errno 57] Socket is not connected > ---------------------------------------- > 2021-01-24 16:43:17,966 - S: ACTIVITYGEN.ci test-case help succeeded on > Mac-1611504114522 > ---------------------------------------- > Exception occurred during processing of request from ('127.0.0.1', 49943) > Traceback (most recent call last): > File > "/usr/local/Cellar/python@3.9 > /3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", > line 650, in process_request_thread > self.finish_request(request, client_address) > ... > File > > "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", > line 990, in handleMessage > self.connection.shutdown(socket.SHUT_RDWR) > OSError: [Errno 57] Socket is not connected > > followed by many more exceptions of the same kind but also some > successful tests. Any ideas of what is going on here? I can try to run > sequentially for debugging purposes but this is not an option in general > (far too many tests). For the full log see > https://github.com/eclipse/sumo/runs/1757655036?check_suite_focus=true > > Best regards and thanks in advance, > Michael > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Michael B. <os...@be...> - 2021-01-24 19:43:23
|
Hi Geoff, hi list, I have problems getting texttest to work on GitHubs CI infrastructure. I enbaled it for Linux and Windows successfully but when installing it via pip for MacOS, the log shows: 2021-01-24 16:43:17,480 - Using local queues for Application ACTIVITYGEN, version ci 2021-01-24 16:43:17,480 - Using local queues for Application COMPLEX, version ci 2021-01-24 16:43:17,481 - Using local queues for Application DFROUTER, version ci ... 2021-01-24 16:43:17,489 - Using local queues for Application TRACI, version ci 2021-01-24 16:43:17,515 - Q: Submitting ACTIVITYGEN.ci test-case help to default local queue 2021-01-24 16:43:17,528 - Q: Submitting COMPLEX.ci test-case nefz_hbefa2 to default local queue 2021-01-24 16:43:17,539 - Q: Submitting DFROUTER.ci test-case help to default local queue ---------------------------------------- Exception occurred during processing of request from ('127.0.0.1', 49942) Traceback (most recent call last): File "/usr/local/Cellar/python@3.9/3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", line 650, in process_request_thread self.finish_request(request, client_address) File "/usr/local/Cellar/python@3.9/3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", line 360, in finish_request self.RequestHandlerClass(request, client_address, self) File "/usr/local/Cellar/python@3.9/3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", line 720, in __init__ self.handle() File "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", line 967, in handle self.handleMessage(identifier) File "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", line 990, in handleMessage self.connection.shutdown(socket.SHUT_RDWR) OSError: [Errno 57] Socket is not connected ---------------------------------------- 2021-01-24 16:43:17,966 - S: ACTIVITYGEN.ci test-case help succeeded on Mac-1611504114522 ---------------------------------------- Exception occurred during processing of request from ('127.0.0.1', 49943) Traceback (most recent call last): File "/usr/local/Cellar/python@3.9/3.9.1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/socketserver.py", line 650, in process_request_thread self.finish_request(request, client_address) ... File "/usr/local/lib/python3.9/site-packages/texttestlib/queuesystem/masterprocess.py", line 990, in handleMessage self.connection.shutdown(socket.SHUT_RDWR) OSError: [Errno 57] Socket is not connected followed by many more exceptions of the same kind but also some successful tests. Any ideas of what is going on here? I can try to run sequentially for debugging purposes but this is not an option in general (far too many tests). For the full log see https://github.com/eclipse/sumo/runs/1757655036?check_suite_focus=true Best regards and thanks in advance, Michael |
From: Geoff B. <geo...@gm...> - 2021-01-05 11:15:28
|
Hi all, Happy New Year all! There is a bugfix release out again. The main fix is that the comment function in the HTML report should work again now. PHP 7 introduced some backwards incompatibility that I've now worked around. I have also made a fix around the knownbug-rerun feature which occasionally caused tests to hang if you were unlucky. Regards, Geoff Bache |
From: Geoff B. <geo...@gm...> - 2020-12-04 16:29:27
|
Hi all, Have now fixed a few mostly GUI-related issues around the Import Files dialog, and the initial application dialog. See SourceForge for more details. Regards, Geoff |
From: Geoff B. <geo...@gm...> - 2020-11-25 10:56:33
|
Hi all, There is a new release out on Sourceforge now. Mostly fairly minor bugfixes. I have removed CaptureMock from the Windows Installer. If CaptureMock is needed on Windows, you should now download it separately and point out its directory using the new config file setting "capturemock_location". Mostly motivated by need to avoid a complete reinstall when CaptureMock is adjusted. Also integrated from fixes from Johan Gill and Jens Kjerrström: Fix an issue when starting sge slave Fix issue when the config queue capacity is None Regards, Geoff Bache |
From: <Mat...@dl...> - 2020-10-07 14:21:44
|
Hi Geoff, yes, “which” also works on macOS as it does on Linux. I will try debugging then. Thanks. Best regards, Matthias From: Geoff Bache <geo...@gm...> Sent: Mittwoch, 7. Oktober 2020 15:20 To: Schwamborn, Matthias <Mat...@dl...> Cc: Geoff Bache <geo...@po...>; General list for texttest issues <tex...@li...> Subject: Re: [Texttest-users] TextTest and Xvfb on MacOS Hi Matthias, I notice TextTest tries to call "which Xvfb" from the command line and checks that it returns code 0. Does such a thing exist on MacOs? I thought it did, but if not, we have our problem right there... Otherwise, I'm afraid it's a question of debugging or adding print statements to the source code, as I have no way to reproduce the problem at my end, not being the owner of a Mac :) Regards, Geoff On Wed, Oct 7, 2020 at 11:59 AM <Mat...@dl...<mailto:Mat...@dl...>> wrote: Dear Geoff, thank you for your reply, I'm the one messing with TextTest on macOS 😉 Xvfb is on the PATH and I enabled logging for "virtual display". The virtualdisplay.diag file gets created but is empty, so no further information there. All I get is "WARNING: Failed to start virtual display on localhost - using real display." Best regards, Matthias --- Dr. Matthias Schwamborn German Aerospace Center (DLR) Institute of Transportation Systems Rutherfordstraße 2 12489 Berlin, Germany Phone: +49-30-67055-8014 Mail: mat...@dl...<mailto:mat...@dl...> Web: https://www.dlr.de/ts/en/ -------- Weitergeleitete Nachricht -------- Betreff: Re: [Texttest-users] TextTest and Xvfb on MacOS Datum: Thu, 24 Sep 2020 12:33:47 +0200 Von: Geoff Bache <geo...@gm...<mailto:geo...@gm...>> Antwort an: geo...@po...<mailto:geo...@po...>, General list for texttest issues <tex...@li...<mailto:tex...@li...>> An: General list for texttest issues <tex...@li...<mailto:tex...@li...>> Hi Michael, Is Xvfb on the PATH? I think it needs to be for TextTest to work. In general it hasn't had a lot of love on MacOs (I have never even tried myself) so it wouldn't be entirely surprising if something in the setup assumes Linux somewhere. I believe there is a log for the Xvfb setup though, try enabling that (instructions under "Troubleshooting" in the docs) Regards, Geoff On Wed, Sep 23, 2020 at 10:49 PM Michael Behrisch <os...@be...<mailto:os...@be...> <mailto:os...@be...<mailto:os...@be...>>> wrote: Hi there, we are currently having problems setting up GUI tests on MacOS. Although XQuartz and Xvfb are installed and can be started from the command line, the application windows keep popping up. Any hints from the community? Best regards, Michael _______________________________________________ Texttest-users mailing list Tex...@li...<mailto:Tex...@li...> <mailto:Tex...@li...<mailto:Tex...@li...>> https://lists.sourceforge.net/lists/listinfo/texttest-users |
From: Geoff B. <geo...@gm...> - 2020-10-07 13:20:02
|
Hi Matthias, I notice TextTest tries to call "which Xvfb" from the command line and checks that it returns code 0. Does such a thing exist on MacOs? I thought it did, but if not, we have our problem right there... Otherwise, I'm afraid it's a question of debugging or adding print statements to the source code, as I have no way to reproduce the problem at my end, not being the owner of a Mac :) Regards, Geoff On Wed, Oct 7, 2020 at 11:59 AM <Mat...@dl...> wrote: > Dear Geoff, > > thank you for your reply, I'm the one messing with TextTest on macOS 😉 > > Xvfb is on the PATH and I enabled logging for "virtual display". > The virtualdisplay.diag file gets created but is empty, so no further > information there. > All I get is "WARNING: Failed to start virtual display on localhost - > using real display." > > Best regards, > Matthias > > --- > Dr. Matthias Schwamborn > > German Aerospace Center (DLR) > Institute of Transportation Systems > Rutherfordstraße 2 > 12489 Berlin, Germany > > Phone: +49-30-67055-8014 > Mail: mat...@dl... > Web: https://www.dlr.de/ts/en/ > > > > -------- Weitergeleitete Nachricht -------- > Betreff: Re: [Texttest-users] TextTest and Xvfb on MacOS > Datum: Thu, 24 Sep 2020 12:33:47 +0200 > Von: Geoff Bache <geo...@gm...> > Antwort an: geo...@po..., General list for texttest issues > <tex...@li...> > An: General list for texttest issues < > tex...@li...> > > > > Hi Michael, > > Is Xvfb on the PATH? I think it needs to be for TextTest to work. > > In general it hasn't had a lot of love on MacOs (I have never even tried > myself) so it wouldn't be entirely surprising if something in the setup > assumes Linux somewhere. > I believe there is a log for the Xvfb setup though, try enabling that > (instructions under "Troubleshooting" in the docs) > > Regards, > Geoff > > On Wed, Sep 23, 2020 at 10:49 PM Michael Behrisch <os...@be... > <mailto:os...@be...>> wrote: > > Hi there, > we are currently having problems setting up GUI tests on MacOS. > Although > XQuartz and Xvfb are installed and can be started from the command > line, > the application windows keep popping up. Any hints from the community? > > Best regards, > Michael > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > <mailto:Tex...@li...> > https://lists.sourceforge.net/lists/listinfo/texttest-users > > |
From: <Mat...@dl...> - 2020-10-07 10:15:16
|
Dear Geoff, thank you for your reply, I'm the one messing with TextTest on macOS 😉 Xvfb is on the PATH and I enabled logging for "virtual display". The virtualdisplay.diag file gets created but is empty, so no further information there. All I get is "WARNING: Failed to start virtual display on localhost - using real display." Best regards, Matthias --- Dr. Matthias Schwamborn German Aerospace Center (DLR) Institute of Transportation Systems Rutherfordstraße 2 12489 Berlin, Germany Phone: +49-30-67055-8014 Mail: mat...@dl... Web: https://www.dlr.de/ts/en/ -------- Weitergeleitete Nachricht -------- Betreff: Re: [Texttest-users] TextTest and Xvfb on MacOS Datum: Thu, 24 Sep 2020 12:33:47 +0200 Von: Geoff Bache <geo...@gm...> Antwort an: geo...@po..., General list for texttest issues <tex...@li...> An: General list for texttest issues <tex...@li...> Hi Michael, Is Xvfb on the PATH? I think it needs to be for TextTest to work. In general it hasn't had a lot of love on MacOs (I have never even tried myself) so it wouldn't be entirely surprising if something in the setup assumes Linux somewhere. I believe there is a log for the Xvfb setup though, try enabling that (instructions under "Troubleshooting" in the docs) Regards, Geoff On Wed, Sep 23, 2020 at 10:49 PM Michael Behrisch <os...@be... <mailto:os...@be...>> wrote: Hi there, we are currently having problems setting up GUI tests on MacOS. Although XQuartz and Xvfb are installed and can be started from the command line, the application windows keep popping up. Any hints from the community? Best regards, Michael _______________________________________________ Texttest-users mailing list Tex...@li... <mailto:Tex...@li...> https://lists.sourceforge.net/lists/listinfo/texttest-users |
From: Geoff B. <geo...@gm...> - 2020-09-24 19:15:42
|
Hi Hamid, It's fine if it only works on Windows, though it shouldn't break on other platforms (it should preferably not be visible on other platforms if it only works on Windows) Regards, Geoff On Thu, Sep 24, 2020 at 12:38 PM Hamid Kharraziha < Ham...@ma...> wrote: > Thanks > > > > Is it ok to do the pull request when my code is specific to windows, or > would I need to implement something that also works on linux? > > > > Regards, > > Hamid > > > > > > Classification: Internal > > *From:* Geoff Bache <geo...@gm...> > *Sent:* 24. september 2020 12:31 > *To:* General list for texttest issues < > tex...@li...> > *Subject:* Re: [Texttest-users] How to get new menu entry by modifying > the python code > > > > This message was sent from outside of your organization. Please do not > click links or open attachments unless you recognize the source of this > email and know the content is safe. > > > > Hi Hamid, > > > > Would also like to point out the "Copy path to clipboard" functionality in > the context menu. I often paste paths from that into Windows Explorer. But > it sounds like your version might be more convenient, so feel free to > submit a pull request. > > > > Regards, > > Geoff > > > > On Thu, Sep 24, 2020 at 8:57 AM Michael Behrisch <os...@be...> wrote: > > Hi Hamid, > the Windows setup now precompiles all python files and it is not so easy > to modify them on the fly. But it is an open source project, you can > propose your changes in a pull request to > https://github.com/texttest/texttest/ > <https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Ftexttest%2Ftexttest%2F&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919972535&sdata=JKYBmfQIBKeTiIsPW4IqCYeC7gxKjIFkme%2BRIKvFie8%3D&reserved=0> > > Best regards, > Michael > > Am 23.09.20 um 08:22 schrieb Hamid Kharraziha: > > Hi texttest users > > > > > > > > I use Texttest 4.0.2 on windows. Previously, in the python 2 version of > > texttest 3.29 I added a new menu entry by modifying the python code and > > some xml files. Now on windows, probably since I am running the windows > > executable, then this change does not take effect. > > > > > > > > How can I get changes in the python code into the windows executable? > > Should it be enough to just modify the python code? > > > > > > > > The new menu entry is "Open file location" if you right-click a file in > > static or dynamic GUI. It opens a windows explorer on that directory. I > > use it for example if I want to copy files that are not normally > collated. > > > > > > > > > > > > Regards, > > > > Hamid > > > > > > > > > > > > Hamid Kharraziha > > Engineer, ROCK/DDFO** > > > > Capacity & Network Management > > > > A.P. Møller - Mærsk A/S > > Esplanaden 50 > > > > 1263 Copenhagen K > > > > Denmark > > > > Phone: +45 3363 8290 > > > > > > > > > > Classification: Internal > > > > > > ------------------------------------------------------------------------ > > > > The information contained in this message is privileged and intended > > only for the recipients named. If the reader is not a representative of > > the intended recipient, any review, dissemination or copying of this > > message or the information it contains is prohibited. If you have > > received this message in error, please immediately notify the sender, > > and delete the original message and attachments. > > > > Maersk will as part of our communication and interaction with you > > collect and process your personal data. You can read more about Maersk’s > > collection and processing of your personal data and your rights as a > > data subject in our privacy policy > > <https://www.maersk.com/front-page-requirements/privacy-policy> > > > > Please consider the environment before printing this email. > > > > > > _______________________________________________ > > Texttest-users mailing list > > Tex...@li... > > https://lists.sourceforge.net/lists/listinfo/texttest-users > <https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Ftexttest-users&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919972535&sdata=w2NI8aTxFd%2FWUUZGl%2F2Pde7JC%2FN073xzv%2FcXR%2FPhkbY%3D&reserved=0> > > > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > <https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Ftexttest-users&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919982528&sdata=nqTMCHZLUbbyz9yzGF9YzPzKDJFPDWuPYeAYM%2FiLXlA%3D&reserved=0> > > > ------------------------------ > > The information contained in this message is privileged and intended only > for the recipients named. If the reader is not a representative of the > intended recipient, any review, dissemination or copying of this message or > the information it contains is prohibited. If you have received this > message in error, please immediately notify the sender, and delete the > original message and attachments. > > Maersk will as part of our communication and interaction with you collect > and process your personal data. You can read more about Maersk’s collection > and processing of your personal data and your rights as a data subject in > our privacy policy > <https://www.maersk.com/front-page-requirements/privacy-policy> > > Please consider the environment before printing this email. > |
From: Hamid K. <Ham...@ma...> - 2020-09-24 11:18:04
|
Thanks Is it ok to do the pull request when my code is specific to windows, or would I need to implement something that also works on linux? Regards, Hamid Classification: Internal From: Geoff Bache <geo...@gm...> Sent: 24. september 2020 12:31 To: General list for texttest issues <tex...@li...> Subject: Re: [Texttest-users] How to get new menu entry by modifying the python code This message was sent from outside of your organization. Please do not click links or open attachments unless you recognize the source of this email and know the content is safe. Hi Hamid, Would also like to point out the "Copy path to clipboard" functionality in the context menu. I often paste paths from that into Windows Explorer. But it sounds like your version might be more convenient, so feel free to submit a pull request. Regards, Geoff On Thu, Sep 24, 2020 at 8:57 AM Michael Behrisch <os...@be...<mailto:os...@be...>> wrote: Hi Hamid, the Windows setup now precompiles all python files and it is not so easy to modify them on the fly. But it is an open source project, you can propose your changes in a pull request to https://github.com/texttest/texttest/<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Ftexttest%2Ftexttest%2F&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919972535&sdata=JKYBmfQIBKeTiIsPW4IqCYeC7gxKjIFkme%2BRIKvFie8%3D&reserved=0> Best regards, Michael Am 23.09.20 um 08:22 schrieb Hamid Kharraziha: > Hi texttest users > > > > I use Texttest 4.0.2 on windows. Previously, in the python 2 version of > texttest 3.29 I added a new menu entry by modifying the python code and > some xml files. Now on windows, probably since I am running the windows > executable, then this change does not take effect. > > > > How can I get changes in the python code into the windows executable? > Should it be enough to just modify the python code? > > > > The new menu entry is "Open file location" if you right-click a file in > static or dynamic GUI. It opens a windows explorer on that directory. I > use it for example if I want to copy files that are not normally collated. > > > > > > Regards, > > Hamid > > > > > > Hamid Kharraziha > Engineer, ROCK/DDFO** > > Capacity & Network Management > > A.P. Møller - Mærsk A/S > Esplanaden 50 > > 1263 Copenhagen K > > Denmark > > Phone: +45 3363 8290 > > > > > Classification: Internal > > > ------------------------------------------------------------------------ > > The information contained in this message is privileged and intended > only for the recipients named. If the reader is not a representative of > the intended recipient, any review, dissemination or copying of this > message or the information it contains is prohibited. If you have > received this message in error, please immediately notify the sender, > and delete the original message and attachments. > > Maersk will as part of our communication and interaction with you > collect and process your personal data. You can read more about Maersk's > collection and processing of your personal data and your rights as a > data subject in our privacy policy > <https://www.maersk.com/front-page-requirements/privacy-policy> > > Please consider the environment before printing this email. > > > _______________________________________________ > Texttest-users mailing list > Tex...@li...<mailto:Tex...@li...> > https://lists.sourceforge.net/lists/listinfo/texttest-users<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Ftexttest-users&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919972535&sdata=w2NI8aTxFd%2FWUUZGl%2F2Pde7JC%2FN073xzv%2FcXR%2FPhkbY%3D&reserved=0> > _______________________________________________ Texttest-users mailing list Tex...@li...<mailto:Tex...@li...> https://lists.sourceforge.net/lists/listinfo/texttest-users<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Ftexttest-users&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C2a3fa3be50e244e4878408d860750019%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637365402919982528&sdata=nqTMCHZLUbbyz9yzGF9YzPzKDJFPDWuPYeAYM%2FiLXlA%3D&reserved=0> ________________________________ The information contained in this message is privileged and intended only for the recipients named. If the reader is not a representative of the intended recipient, any review, dissemination or copying of this message or the information it contains is prohibited. If you have received this message in error, please immediately notify the sender, and delete the original message and attachments. Maersk will as part of our communication and interaction with you collect and process your personal data. You can read more about Maersk's collection and processing of your personal data and your rights as a data subject in our privacy policy <https://www.maersk.com/front-page-requirements/privacy-policy> Please consider the environment before printing this email. |
From: Geoff B. <geo...@gm...> - 2020-09-24 10:34:08
|
Hi Michael, Is Xvfb on the PATH? I think it needs to be for TextTest to work. In general it hasn't had a lot of love on MacOs (I have never even tried myself) so it wouldn't be entirely surprising if something in the setup assumes Linux somewhere. I believe there is a log for the Xvfb setup though, try enabling that (instructions under "Troubleshooting" in the docs) Regards, Geoff On Wed, Sep 23, 2020 at 10:49 PM Michael Behrisch <os...@be...> wrote: > Hi there, > we are currently having problems setting up GUI tests on MacOS. Although > XQuartz and Xvfb are installed and can be started from the command line, > the application windows keep popping up. Any hints from the community? > > Best regards, > Michael > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Geoff B. <geo...@gm...> - 2020-09-24 10:31:11
|
Hi Hamid, Would also like to point out the "Copy path to clipboard" functionality in the context menu. I often paste paths from that into Windows Explorer. But it sounds like your version might be more convenient, so feel free to submit a pull request. Regards, Geoff On Thu, Sep 24, 2020 at 8:57 AM Michael Behrisch <os...@be...> wrote: > Hi Hamid, > the Windows setup now precompiles all python files and it is not so easy > to modify them on the fly. But it is an open source project, you can > propose your changes in a pull request to > https://github.com/texttest/texttest/ > > Best regards, > Michael > > Am 23.09.20 um 08:22 schrieb Hamid Kharraziha: > > Hi texttest users > > > > > > > > I use Texttest 4.0.2 on windows. Previously, in the python 2 version of > > texttest 3.29 I added a new menu entry by modifying the python code and > > some xml files. Now on windows, probably since I am running the windows > > executable, then this change does not take effect. > > > > > > > > How can I get changes in the python code into the windows executable? > > Should it be enough to just modify the python code? > > > > > > > > The new menu entry is "Open file location" if you right-click a file in > > static or dynamic GUI. It opens a windows explorer on that directory. I > > use it for example if I want to copy files that are not normally > collated. > > > > > > > > > > > > Regards, > > > > Hamid > > > > > > > > > > > > Hamid Kharraziha > > Engineer, ROCK/DDFO** > > > > Capacity & Network Management > > > > A.P. Møller - Mærsk A/S > > Esplanaden 50 > > > > 1263 Copenhagen K > > > > Denmark > > > > Phone: +45 3363 8290 > > > > > > > > > > Classification: Internal > > > > > > ------------------------------------------------------------------------ > > > > The information contained in this message is privileged and intended > > only for the recipients named. If the reader is not a representative of > > the intended recipient, any review, dissemination or copying of this > > message or the information it contains is prohibited. If you have > > received this message in error, please immediately notify the sender, > > and delete the original message and attachments. > > > > Maersk will as part of our communication and interaction with you > > collect and process your personal data. You can read more about Maersk’s > > collection and processing of your personal data and your rights as a > > data subject in our privacy policy > > <https://www.maersk.com/front-page-requirements/privacy-policy> > > > > Please consider the environment before printing this email. > > > > > > _______________________________________________ > > Texttest-users mailing list > > Tex...@li... > > https://lists.sourceforge.net/lists/listinfo/texttest-users > > > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Michael B. <os...@be...> - 2020-09-24 06:57:36
|
Hi Hamid, the Windows setup now precompiles all python files and it is not so easy to modify them on the fly. But it is an open source project, you can propose your changes in a pull request to https://github.com/texttest/texttest/ Best regards, Michael Am 23.09.20 um 08:22 schrieb Hamid Kharraziha: > Hi texttest users > > > > I use Texttest 4.0.2 on windows. Previously, in the python 2 version of > texttest 3.29 I added a new menu entry by modifying the python code and > some xml files. Now on windows, probably since I am running the windows > executable, then this change does not take effect. > > > > How can I get changes in the python code into the windows executable? > Should it be enough to just modify the python code? > > > > The new menu entry is "Open file location" if you right-click a file in > static or dynamic GUI. It opens a windows explorer on that directory. I > use it for example if I want to copy files that are not normally collated. > > > > > > Regards, > > Hamid > > > > > > Hamid Kharraziha > Engineer, ROCK/DDFO** > > Capacity & Network Management > > A.P. Møller - Mærsk A/S > Esplanaden 50 > > 1263 Copenhagen K > > Denmark > > Phone: +45 3363 8290 > > > > > Classification: Internal > > > ------------------------------------------------------------------------ > > The information contained in this message is privileged and intended > only for the recipients named. If the reader is not a representative of > the intended recipient, any review, dissemination or copying of this > message or the information it contains is prohibited. If you have > received this message in error, please immediately notify the sender, > and delete the original message and attachments. > > Maersk will as part of our communication and interaction with you > collect and process your personal data. You can read more about Maersk’s > collection and processing of your personal data and your rights as a > data subject in our privacy policy > <https://www.maersk.com/front-page-requirements/privacy-policy> > > Please consider the environment before printing this email. > > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Michael B. <os...@be...> - 2020-09-23 20:49:27
|
Hi there, we are currently having problems setting up GUI tests on MacOS. Although XQuartz and Xvfb are installed and can be started from the command line, the application windows keep popping up. Any hints from the community? Best regards, Michael |
From: Hamid K. <Ham...@ma...> - 2020-09-23 07:55:50
|
Hi texttest users I use Texttest 4.0.2 on windows. Previously, in the python 2 version of texttest 3.29 I added a new menu entry by modifying the python code and some xml files. Now on windows, probably since I am running the windows executable, then this change does not take effect. How can I get changes in the python code into the windows executable? Should it be enough to just modify the python code? The new menu entry is "Open file location" if you right-click a file in static or dynamic GUI. It opens a windows explorer on that directory. I use it for example if I want to copy files that are not normally collated. Regards, Hamid Hamid Kharraziha Engineer, ROCK/DDFO Capacity & Network Management [cid:image001.gif@01D69182.168836D0] A.P. Møller - Mærsk A/S Esplanaden 50 1263 Copenhagen K Denmark Phone: +45 3363 8290 Classification: Internal ________________________________ The information contained in this message is privileged and intended only for the recipients named. If the reader is not a representative of the intended recipient, any review, dissemination or copying of this message or the information it contains is prohibited. If you have received this message in error, please immediately notify the sender, and delete the original message and attachments. Maersk will as part of our communication and interaction with you collect and process your personal data. You can read more about Maersk's collection and processing of your personal data and your rights as a data subject in our privacy policy <https://www.maersk.com/front-page-requirements/privacy-policy> Please consider the environment before printing this email. |
From: Geoff B. <geo...@gm...> - 2020-08-31 06:36:36
|
Hi all, I have made a release now. This should fix the 2 issues raised recently on this list, i.e. that mode-dependent windows_size settings should now work again, and that it is now possible to increase parallelism by setting "queue_system_max_capacity" (except when testing remotely using the cloud) (Thanks to Michael Behrisch again for his help with the build infrastructure!) Regards, Geoff |
From: Hamid K. <Ham...@ma...> - 2020-08-26 14:23:17
|
Hi Geoff I can confirm it works for me to set "height_screen" and "width_screen". Actually I didn't know it is possible to set one value for both static and dynamic. I don't really need to have separate values. Thanks and regards, Hamid Classification: Internal From: Geoff Bache <geo...@gm...> Sent: 26. august 2020 10:37 To: General list for texttest issues <tex...@li...> Subject: Re: [Texttest-users] Problem setting window_size This message was sent from outside of your organization. Please do not click links or open attachments unless you recognize the source of this email and know the content is safe. Hi Hamid, Yes, these seem to have broken in the move to Python 3. Will make a release when I've fixed this and Peter Rosell's issue from a couple of days ago. You can work around it in the meantime by using "height_screen" and "width_screen", which still work. You can't vary between static and dynamic GUIs but it should work otherwise. Regards, Geoff On Tue, Aug 25, 2020 at 12:54 PM Hamid Kharraziha <Ham...@ma...<mailto:Ham...@ma...>> wrote: Hi all I'm trying to switch to the latest version but have problem with the window_size settings. They don't take effect, neither in static or dynamic gui, and I get the following error message when I close the dynamic gui. The error goes away if I use integers instead of decimals. [cid:image003.jpg@01D67BC0.5534F6C0] This is from the personal config file: [window_size] dynamic_width_screen:0.2 static_width_screen:0.3 dynamic_height_screen:0.6 static_height_screen:0.7 [end] I'm on Windows 10 with texttest 4.0. Before I was using version 3.29 which accepts these settings. Is this something that has changed with the new version? Apart from the problem with window size, it seems to be running fine and I can run test-cases. Best regards, Hamid Hamid Kharraziha Engineer, ROCK/DDFO Capacity & Network Management [cid:image002.gif@01D67BC0.54DD60E0] A.P. Møller - Mærsk A/S Esplanaden 50 1263 Copenhagen K Denmark Phone: +45 3363 8290 Classification: Internal ________________________________ The information contained in this message is privileged and intended only for the recipients named. If the reader is not a representative of the intended recipient, any review, dissemination or copying of this message or the information it contains is prohibited. If you have received this message in error, please immediately notify the sender, and delete the original message and attachments. Maersk will as part of our communication and interaction with you collect and process your personal data. You can read more about Maersk's collection and processing of your personal data and your rights as a data subject in our privacy policy <https://www.maersk.com/front-page-requirements/privacy-policy> Please consider the environment before printing this email. _______________________________________________ Texttest-users mailing list Tex...@li...<mailto:Tex...@li...> https://lists.sourceforge.net/lists/listinfo/texttest-users<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Ftexttest-users&data=02%7C01%7Chamid.kharraziha%40maersk.com%7C6eb6870e767b4db486c308d8499c8e5c%7C05d75c05fa1a42e79cf1eb416c396f2d%7C0%7C0%7C637340284060753532&sdata=uuWjyYn%2BCn73TbTdZUtZNJHuaBWKfQ%2B95MriPleDvX0%3D&reserved=0> ________________________________ The information contained in this message is privileged and intended only for the recipients named. If the reader is not a representative of the intended recipient, any review, dissemination or copying of this message or the information it contains is prohibited. If you have received this message in error, please immediately notify the sender, and delete the original message and attachments. Maersk will as part of our communication and interaction with you collect and process your personal data. You can read more about Maersk's collection and processing of your personal data and your rights as a data subject in our privacy policy <https://www.maersk.com/front-page-requirements/privacy-policy> Please consider the environment before printing this email. |
From: Geoff B. <geo...@gm...> - 2020-08-26 08:37:38
|
Hi Hamid, Yes, these seem to have broken in the move to Python 3. Will make a release when I've fixed this and Peter Rosell's issue from a couple of days ago. You can work around it in the meantime by using "height_screen" and "width_screen", which still work. You can't vary between static and dynamic GUIs but it should work otherwise. Regards, Geoff On Tue, Aug 25, 2020 at 12:54 PM Hamid Kharraziha < Ham...@ma...> wrote: > Hi all > > > > I’m trying to switch to the latest version but have problem with the > window_size settings. They don’t take effect, neither in static or dynamic > gui, and I get the following error message when I close the dynamic gui. > The error goes away if I use integers instead of decimals. > > > > > > This is from the personal config file: > > > > [window_size] > > dynamic_width_screen:0.2 > > static_width_screen:0.3 > > dynamic_height_screen:0.6 > > static_height_screen:0.7 > > [end] > > > > I’m on Windows 10 with texttest 4.0. Before I was using version 3.29 which > accepts these settings. Is this something that has changed with the new > version? > > > > Apart from the problem with window size, it seems to be running fine and I > can run test-cases. > > > > Best regards, > > Hamid > > > > Hamid Kharraziha > Engineer, ROCK/DDFO > > Capacity & Network Management > > A.P. Møller - Mærsk A/S > Esplanaden 50 > > 1263 Copenhagen K > > Denmark > > Phone: +45 3363 8290 > > > > > > Classification: Internal > > ------------------------------ > > The information contained in this message is privileged and intended only > for the recipients named. If the reader is not a representative of the > intended recipient, any review, dissemination or copying of this message or > the information it contains is prohibited. If you have received this > message in error, please immediately notify the sender, and delete the > original message and attachments. > > Maersk will as part of our communication and interaction with you collect > and process your personal data. You can read more about Maersk’s collection > and processing of your personal data and your rights as a data subject in > our privacy policy > <https://www.maersk.com/front-page-requirements/privacy-policy> > > Please consider the environment before printing this email. > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Hamid K. <Ham...@ma...> - 2020-08-25 10:50:49
|
Hi all I'm trying to switch to the latest version but have problem with the window_size settings. They don't take effect, neither in static or dynamic gui, and I get the following error message when I close the dynamic gui. The error goes away if I use integers instead of decimals. [cid:image003.jpg@01D67AC0.708E6CE0] This is from the personal config file: [window_size] dynamic_width_screen:0.2 static_width_screen:0.3 dynamic_height_screen:0.6 static_height_screen:0.7 [end] I'm on Windows 10 with texttest 4.0. Before I was using version 3.29 which accepts these settings. Is this something that has changed with the new version? Apart from the problem with window size, it seems to be running fine and I can run test-cases. Best regards, Hamid Hamid Kharraziha Engineer, ROCK/DDFO Capacity & Network Management [cid:image001.gif@01D67AB8.909540C0] A.P. Møller - Mærsk A/S Esplanaden 50 1263 Copenhagen K Denmark Phone: +45 3363 8290 Classification: Internal ________________________________ The information contained in this message is privileged and intended only for the recipients named. If the reader is not a representative of the intended recipient, any review, dissemination or copying of this message or the information it contains is prohibited. If you have received this message in error, please immediately notify the sender, and delete the original message and attachments. Maersk will as part of our communication and interaction with you collect and process your personal data. You can read more about Maersk's collection and processing of your personal data and your rights as a data subject in our privacy policy <https://www.maersk.com/front-page-requirements/privacy-policy> Please consider the environment before printing this email. |
From: Geoff B. <geo...@gm...> - 2020-08-23 15:20:37
|
Hi Peter, I think you're probably right that this isn't possible right now, you have pretty much tried what I would have tried. I'll try and fix this sometime soon. Regards, Geoff On Sat, Aug 22, 2020 at 1:46 PM Peter Rosell <pet...@gm...> wrote: > Hi, > How can I run more parallel tests than the number of CPU cores? > > I have a test suite with a lot of tests that run against an external > system and that makes the test fixture wait for the result for an amount of > time. When running I get the number of parallel tests to be the same as the > number of cores. To be more efficient I want to increase the number of > parallel tests, but I can find how. I have tried setting the > queue_system_max_capacity, but I have only been able to lower the number of > parallel tests, not increase. > > In the documentation ( > http://texttest.sourceforge.net/index.php?page=documentation_4_0&n=running_tests_in_parallel) > it says > >> If you run TextTest on a multicore machine, it will run as many tests in >> parallel as you have cores on the machine. > > and > >> To steer how many tests will be run simultaneously, you can set >> "queue_system_max_capacity" in your config file also. > > > I just had a quick look into the code and if it's this line that sets the > limit I'm out of luck here. > https://github.com/texttest/texttest/blob/cb421b1b045441da9440eca4812f9bd8500bd5d8/texttestlib/queuesystem/local.py#L39 > Maybe it could be possible to add an override in the config file. > > Best regards > Peter > > _______________________________________________ > Texttest-users mailing list > Tex...@li... > https://lists.sourceforge.net/lists/listinfo/texttest-users > |
From: Peter R. <pet...@gm...> - 2020-08-22 11:46:30
|
Hi, How can I run more parallel tests than the number of CPU cores? I have a test suite with a lot of tests that run against an external system and that makes the test fixture wait for the result for an amount of time. When running I get the number of parallel tests to be the same as the number of cores. To be more efficient I want to increase the number of parallel tests, but I can find how. I have tried setting the queue_system_max_capacity, but I have only been able to lower the number of parallel tests, not increase. In the documentation ( http://texttest.sourceforge.net/index.php?page=documentation_4_0&n=running_tests_in_parallel) it says > If you run TextTest on a multicore machine, it will run as many tests in > parallel as you have cores on the machine. and > To steer how many tests will be run simultaneously, you can set > "queue_system_max_capacity" in your config file also. I just had a quick look into the code and if it's this line that sets the limit I'm out of luck here. https://github.com/texttest/texttest/blob/cb421b1b045441da9440eca4812f9bd8500bd5d8/texttestlib/queuesystem/local.py#L39 Maybe it could be possible to add an override in the config file. Best regards Peter |