Last active
September 23, 2021 09:32
Revisions
-
gaborbernat revised this gist
Sep 23, 2021 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ 1. Install https://github.com/gaborbernat/tox/tree/2159 2. Make an empty folder and put the above tox.ini in it 3. Invoke `python -m tox` and once that command is sleeping press CTRL+C (the app should lock there indefinitely). -
gaborbernat created this gist
Sep 23, 2021 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ [testenv] skip_install = true commands = python -c 'import os; print(f"start {os.getpid()}"); import time; time.sleep(100); print("end");'