You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is happening here is: a Debian autobuilder is unable to build
libturpial from source. This is a serious bug and has caused to get
turpial dropped from testing.
The autobuilder is failing because libturpial unit tests are trying to
write in the homedir of the user who is running the build and this
violates Debian guidelines (a package should not try to write outside
its builddir).
I was hacking the unit tests but I'm unable to get a reasonable fix
for this issue. The files with problematic unit tests are:
tests/test_column_manager.py
tests/test_account_manager.py
tests/test_core.py
I stumbled upon these two situations:
I tried to pass an explicit basedir to libturpial.config.AppConfig
constructor to override the default basedir pointing to the homedir of
the user running libturpial. I did this on tests/test_column_manager.py
and tests/test_account_manager.py.
On tests/test_core.py I noticed that I can't specify an explicit
basedir when you create an instance of libturpial.api.core.Core, so this
is going to try to create ~user/.config/turpial.
I'm looking for help to get a fix or workaround for this issue.
The text was updated successfully, but these errors were encountered:
Nomadium comments:
The text was updated successfully, but these errors were encountered: