🖥Быстрый Linux-совет: один терминал вместо десятка окон
Хочешь держать несколько терминальных сессий открытыми и не плодить кучу окон?
Используй `tmux`.
Он позволяет запускать отдельные сессии, делить терминал на панели, отключаться от работы и потом возвращаться к ней с того же места.
Например, ты подключился к серверу, запустил долгий процесс и не хочешь потерять его при разрыве SSH. Создаешь сессию:
tmux new -s myserver
Отключаешься от нее - процесс продолжает работать. Потом можно посмотреть список сессий:
tmux ls
И вернуться обратно:
tmux attach -t myserver
tmux превращает один терминал в полноценное рабочее пространство.
Сессии, окна, панели, detach, reattach - и ты больше не зависишь от одного открытого терминального окна.
#linux#terminal#tmux#devops
http://splinter.readthedocs.io/en/latest/
#Splinter is an open source tool for testing web applications using Python. It lets you automate browser actions, such as visiting URLs and interacting with their items.
#tests
https://splinter.readthedocs.io/en/latest/
#Splinter is an open source tool for testing web applications using Python. It lets you #automate browser actions, such as visiting URLs and interacting with their items.
#tests
https://github.com/pytest-dev/pytest-splinter
The plugin provides a set of fixtures to use #splinter for browser testing with #pytest .
#tests
#pytest_splinter