Closed cdeil closed 2 months ago
Short answer yes. Try running pixi run -e test-312 install
before the command.
See the note here https://holoviz-dev.github.io/panel/developer_guide/index.html#editable-install
@hoxbro - thank you!
That does fix the issue.
One more thing that I find weird is that running the test for (only this one) example notebook creates a tab in my default browser Chrome every time I run the tests:
$ pixi run -e test-312 test-example -v examples/reference/chat/ChatStep.ipynb
Is this expected? Possible to avoid this somehow?
Likely a .show
somewhere in the notebook.
As a new pixi user I find it confusing that there's a pixi run lint-install
but then for other envs there's no equivalent env install task. Is is possible to make all envs work the same?
There is a chat_feed.show()
here: https://holoviz-dev.github.io/panel/reference/chat/ChatFeed.html
Is that normal or should it be deleted or changed somehow?
As a new pixi user I find it confusing that there's a pixi run lint-install but then for other envs there's no equivalent env install task. Is is possible to make all envs work the same?
For the other environment, the command is pixi run install
. pixi run lint-install
is the exception, not the rule.
Is that normal or should it be deleted or changed somehow?
I think it is a debug leftover and should be removed.
This was usage error. show call removed in #7147
I'm on 9404b4348a80a190b3dcda7f270ba3e5b3c10210 and followed instructions here: https://holoviz-dev.github.io/panel/developer_guide/index.html#example-tests
I get this error:
and some similar errors:
This is related to the recent change in #7060 .
Why does this happen? Does
pixi run test-example
somehow not install the latest source code into the pixi env andpytest
picks up some olderpanel
Python code version?