Skip to content

Instantly share code, notes, and snippets.

@gaborbernat
Last active September 23, 2021 09:32

Revisions

  1. gaborbernat revised this gist Sep 23, 2021. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions README.md
    Original 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).
  2. gaborbernat created this gist Sep 23, 2021.
    3 changes: 3 additions & 0 deletions tox.ini
    Original 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");'