Brian Ealdwine
Brian Ealdwine
the colors are available in the `/sys/bus/hid/drivers/playstation/xxxxxx/leds` folder, separately listed red, green, and blue.
+1 for gui tabs! I use use tmux and screen (and have in recent years come to quite like byobu) -- and I would really like to see an implementation...
Nice! Since it's a pretty divisive issue, though, perhaps it should be disabled by default, so it's an opt-in feature. I'm going to give it a try, though -- nested...
@telmich We're still taking PRs and issues over on [ccwienk/temper](https://github.com/ccwienk/temper). No guaranteed turnaround time, but we do get around to handling them. We also publish the PyPi package `temper_py`. Edit:...
An alternative (though somewhat avoiding the issue) is to distribute the modified font yourself, if you have the rights to -- or make an integrated means of installing/making it available....
..and, while that's happening, perhaps document all of the available ~commands~ sections?
Don't you already have IPC/an event system between Manager and Workers? Couldn't you use the existing events system to handle fixtures `xdist_group_lock`, `xdist_global_lock` and `xdist_group` and `xdist_global`, where: - `xdist_xxx_lock`...
I've done this kind of control with other pytest plugins by using `multiprocessing.lock()` set up in `conftest.py`, but those plugins used the multiprocessing module, and apparently loaded `conftest.py` before forking...
There are other use cases that a file lock won't cover -- like when doing distributed testing, and using the same database back-end, or doing some other kind of setup...
Not that a random user matters much, but FYI this is the reason I chose and use a less-developed framework for parallel testing. I've implemented a lock, and a dict,...