Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 25, 2019 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/a78b06ab8e57251a5e530f2e6966fe4b to your computer and use it in GitHub Desktop.
Save ryantm/a78b06ab8e57251a5e530f2e6966fe4b to your computer and use it in GitHub Desktop.
/nix/store/4546ykjjxm4hq4c80kf738yj2w8gcrqa-python3.7-buildbot-worker-2.5.1
├── bin
│   ├── buildbot-worker
│   └── buildbot_worker_windows_service
├── lib
│   └── python3.7
│   └── site-packages
│   ├── buildbot_worker
│   │   ├── backports
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── base.py
│   │   ├── bot.py
│   │   ├── commands
│   │   │   ├── base.py
│   │   │   ├── fs.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── fs.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── registry.cpython-37.pyc
│   │   │   │   ├── shell.cpython-37.pyc
│   │   │   │   ├── transfer.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── registry.py
│   │   │   ├── shell.py
│   │   │   ├── transfer.py
│   │   │   └── utils.py
│   │   ├── compat.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── interfaces.py
│   │   ├── monkeypatches
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── testcase_assert.cpython-37.pyc
│   │   │   └── testcase_assert.py
│   │   ├── null.py
│   │   ├── pb.py
│   │   ├── pbutil.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── bot.cpython-37.pyc
│   │   │   ├── compat.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── interfaces.cpython-37.pyc
│   │   │   ├── null.cpython-37.pyc
│   │   │   ├── pb.cpython-37.pyc
│   │   │   ├── pbutil.cpython-37.pyc
│   │   │   └── runprocess.cpython-37.pyc
│   │   ├── runprocess.py
│   │   ├── scripts
│   │   │   ├── base.py
│   │   │   ├── create_worker.py
│   │   │   ├── __init__.py
│   │   │   ├── logwatcher.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── create_worker.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── logwatcher.cpython-37.pyc
│   │   │   │   ├── restart.cpython-37.pyc
│   │   │   │   ├── runner.cpython-37.pyc
│   │   │   │   ├── start.cpython-37.pyc
│   │   │   │   ├── stop.cpython-37.pyc
│   │   │   │   └── windows_service.cpython-37.pyc
│   │   │   ├── restart.py
│   │   │   ├── runner.py
│   │   │   ├── start.py
│   │   │   ├── stop.py
│   │   │   └── windows_service.py
│   │   ├── test
│   │   │   ├── fake
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── remote.cpython-37.pyc
│   │   │   │   │   ├── runprocess.cpython-37.pyc
│   │   │   │   │   └── workerforbuilder.cpython-37.pyc
│   │   │   │   ├── remote.py
│   │   │   │   ├── runprocess.py
│   │   │   │   └── workerforbuilder.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_extra_coverage.cpython-37.pyc
│   │   │   │   └── test_util_hangcheck.cpython-37.pyc
│   │   │   ├── test_extra_coverage.py
│   │   │   ├── test_util_hangcheck.py
│   │   │   ├── unit
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── runprocess-scripts.cpython-37.pyc
│   │   │   │   │   ├── test_bot.cpython-37.pyc
│   │   │   │   │   ├── test_bot_Worker.cpython-37.pyc
│   │   │   │   │   ├── test_commands_base.cpython-37.pyc
│   │   │   │   │   ├── test_commands_fs.cpython-37.pyc
│   │   │   │   │   ├── test_commands_registry.cpython-37.pyc
│   │   │   │   │   ├── test_commands_shell.cpython-37.pyc
│   │   │   │   │   ├── test_commands_transfer.cpython-37.pyc
│   │   │   │   │   ├── test_commands_utils.cpython-37.pyc
│   │   │   │   │   ├── test_runprocess.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_base.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_create_worker.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_restart.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_runner.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_start.cpython-37.pyc
│   │   │   │   │   ├── test_scripts_stop.cpython-37.pyc
│   │   │   │   │   └── test_util.cpython-37.pyc
│   │   │   │   ├── runprocess-scripts.py
│   │   │   │   ├── test_bot.py
│   │   │   │   ├── test_bot_Worker.py
│   │   │   │   ├── test_commands_base.py
│   │   │   │   ├── test_commands_fs.py
│   │   │   │   ├── test_commands_registry.py
│   │   │   │   ├── test_commands_shell.py
│   │   │   │   ├── test_commands_transfer.py
│   │   │   │   ├── test_commands_utils.py
│   │   │   │   ├── test_runprocess.py
│   │   │   │   ├── test_scripts_base.py
│   │   │   │   ├── test_scripts_create_worker.py
│   │   │   │   ├── test_scripts_restart.py
│   │   │   │   ├── test_scripts_runner.py
│   │   │   │   ├── test_scripts_start.py
│   │   │   │   ├── test_scripts_stop.py
│   │   │   │   └── test_util.py
│   │   │   └── util
│   │   │   ├── command.py
│   │   │   ├── compat.py
│   │   │   ├── __init__.py
│   │   │   ├── misc.py
│   │   │   ├── __pycache__
│   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   ├── compat.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── misc.cpython-37.pyc
│   │   │   │   └── sourcecommand.cpython-37.pyc
│   │   │   └── sourcecommand.py
│   │   ├── util
│   │   │   ├── _hangcheck.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── _hangcheck.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   └── VERSION
│   └── buildbot_worker-2.5.1.dist-info
│   ├── COPYING
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
26 directories, 133 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment