Mateusz Żebrak

Results 12 issues of Mateusz Żebrak

Hi. I need to override the environment for settings in conftest.py. As I found I can do it by adding: ```python from dynaconf import settings @pytest.fixture(scope="session", autouse=True) def set_test_settings(): settings.configure(FORCE_ENV_FOR_DYNACONF="testing")...

question

I ran into random failing tests when using the tavern plugin. It looks like there is a problem with its dependencies. Probably pykwalify Unfortunately, I have not found any dependence...

I think it will be very useful if CSS_PATH could be usable in Widget instances also, like it is already available in e.g App or Screen. You could use live...

Consider such an MRE: ```python from __future__ import annotations from textual.app import App, ComposeResult from textual.binding import Binding from textual.screen import Screen from textual.widgets import Button, Footer class CssScreen(Screen): CSS...

Hi @darrenburns, first of all I find your plugin very useful and wanted to ask if there are any plans to include `textual-autocomplete` in the Textual library itself? Unfortunately, I...

### First Check - [X] I added a very descriptive title here. - [X] I used the GitHub search to find a similar question and didn't find it. - [X]...

question
shell / zsh

Observed since `0.80.0`, MRE works on the latest `0.82.0` When the Textual app is started via `run_async`, logs inside `on_unmount` are occasionally (often) displayed in the terminal. Occasionally (less often)...

It's common that there's no need to pass a reference to some screen between multiple screens. This way when the desired screen is not "installed", you either have to access...

Please see what happens when pop_until_active is used between `0:05` and `0:06`: Video starts on "installed" Dashboard screen, then 3 screens are pushed, then `self.app.get_screen("dashboard").pop_until_active()` gets called by binding from...

I encountered a weird situation when bindings were missing in the footer. Also, ctrl+c doesn't work until they appear again, however, the UI keeps refreshing. Pressing a button / resizing...