G Johansson
|
2d3318e767
|
Remove platform YAML from Command line (#103202)
|
2023-11-04 16:17:31 +01:00 |
Franck Nijhof
|
ed16fffa79
|
Bump breaking version for YAML features ADR-0021 (#95525)
|
2023-06-29 11:59:36 +02:00 |
Ville Skyttä
|
ca936d0b38
|
Replace bandit with ruff (#93200)
|
2023-06-08 22:46:04 +02:00 |
G Johansson
|
46e7486ce6
|
Move yaml configuration to integration key for command_line (#92824)
* Inital init commit
* bs and cover
* notify
* sensor
* switch
* Issues
* Finalize __init__
* First pass tests
* Fix Binary sensors
* Test cover
* Test notify
* Test sensor
* Tests switch
* Fix coverage
* Add codeowner
* Fix caplog
* test issue
* Flaky test notify
* Fix async
* Adjust yaml structure
* Change yaml format again
* Issue strings
* Fix tests
* string review comment
|
2023-05-29 08:00:50 +02:00 |
epenet
|
33e698d67f
|
Improve notify type hints in integrations (#90034)
|
2023-03-21 11:40:19 +01:00 |
J. Nick Koston
|
03eea7bd3f
|
Avoid subprocess memory copy when c library supports posix_spawn (#87958)
* use posix spawn on alpine
* Avoid subprocess memory copy when c library supports posix_spawn
By default python 3.10 will use the fork() which has to
copy all the memory of the parent process (in our case
this can be huge since Home Assistant core can use
hundreds of megabytes of RAM). By using posix_spawn
this is avoided.
In python 3.11 vfork will also be available
https://github.com/python/cpython/issues/80004#issuecomment-1093810689
https://github.com/python/cpython/pull/11671 but we won't
always be able to use it and posix_spawn is considered safer
https://bugzilla.kernel.org/show_bug.cgi?id=215813#c14
The subprocess library doesn't know about musl though
even though it supports posix_spawn https://git.musl-libc.org/cgit/musl/log/src/process/posix_spawn.c
so we have to teach it since it only has checks for glibc
1b736838e6/Lib/subprocess.py (L745)
The constant is documented as being able to be flipped here:
https://docs.python.org/3/library/subprocess.html#disabling-use-of-vfork-or-posix-spawn
* Avoid subprocess memory copy when c library supports posix_spawn
By default python 3.10 will use the fork() which has to
copy memory of the parent process (in our case
this can be huge since Home Assistant core can use
hundreds of megabytes of RAM). By using posix_spawn
this is avoided and subprocess creation does not
get discernibly slow the larger the Home Assistant
python process grows.
In python 3.11 vfork will also be available
https://github.com/python/cpython/issues/80004#issuecomment-1093810689
https://github.com/python/cpython/pull/11671 but we won't
always be able to use it and posix_spawn is considered safer
https://bugzilla.kernel.org/show_bug.cgi?id=215813#c14
The subprocess library doesn't know about musl though
even though it supports posix_spawn https://git.musl-libc.org/cgit/musl/log/src/process/posix_spawn.c
so we have to teach it since it only has checks for glibc
1b736838e6/Lib/subprocess.py (L745)
The constant is documented as being able to be flipped here:
https://docs.python.org/3/library/subprocess.html#disabling-use-of-vfork-or-posix-spawn
* missed some
* adjust more tests
* coverage
|
2023-02-13 09:02:51 -05:00 |
atlflyer
|
da11cef29a
|
Report error code in log when command fails (#74319)
|
2022-07-02 09:58:08 -04:00 |
G Johansson
|
3771c154fa
|
Improve code quality command_line (#65333)
|
2022-02-12 08:19:37 -06:00 |
Marc Mueller
|
f1d48ddfe3
|
Update pylint to 2.8.0 (#49637)
|
2021-04-24 14:39:24 -10:00 |
J. Nick Koston
|
7b728b17f7
|
Add missing timeout to command_line platforms: cover, notify, switch (#38497)
* Add missing timeout to command_line platforms: cover, notify, switch
* add timeout test for notify
|
2020-08-04 17:00:02 -10:00 |
Ville Skyttä
|
5e2ba2eb77
|
Enable some more bandit checks (#30857)
* Enable B108 (hardcoded tmp dir), address findings
* Enable B602 (subprocess popen with shell), address findings
* Enable B604 (start process with shell), address findings
* Enable B306 (mktemp), B307 (eval), and B325 (tempnam), no issues to address
|
2020-01-20 18:44:55 +02:00 |
Bas Nijholt
|
73c373a0f2
|
use isort to sort imports according to PEP8 for command_line (#29627)
|
2019-12-08 22:25:57 +05:30 |
Paulus Schoutsen
|
4de97abc3a
|
Black
|
2019-07-31 12:25:30 -07:00 |
Tobias Sauerwein
|
048b100eea
|
Clean up docstrings (#22679)
* Clean up docstrings
* Fix long lines
* Fix more docstrings
* Fix more docstrings
* Fix more docstrings
|
2019-04-03 17:40:03 +02:00 |
Robbie Trencheny
|
7741ec4d5a
|
Great migration notify (#22406)
* Move notify platforms into components
* Move notify tests
* Fix notify tests
* More fixes
* Update requirements
* Update .coveragerc
* Run gen reqs
|
2019-03-27 20:36:13 -07:00 |