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
After running this: pytest test/unit/webapps/config_manage/test_config_manage.py::test_build_uwsgi_yaml, the uwsgi_schema.yml file is overwritten.
Probable cause: overwriting the path for testing is broken.
In lib/galaxy/config/config_manage.py (at the end of _build_uwsgi_schema()), variable path contains the path to the local working directory: PosixPath('/home/sergey/0dev/galaxy/_galaxy/dev/lib/galaxy/config/schemas/uwsgi_schema.yml')
For comparison, in 21.09 path points to the /tmp directory: /tmp/tmpxj2eh451/lib/galaxy/webapps/uwsgi_schema.yml (which is correct).
To Reproduce
Run the test, then git status, see the modified file.
Expected behavior
Should not be modified.
The text was updated successfully, but these errors were encountered:
After running this:
pytest test/unit/webapps/config_manage/test_config_manage.py::test_build_uwsgi_yaml
, theuwsgi_schema.yml
file is overwritten.Probable cause: overwriting the path for testing is broken.
In
lib/galaxy/config/config_manage.py
(at the end of_build_uwsgi_schema()
), variablepath
contains the path to the local working directory:PosixPath('/home/sergey/0dev/galaxy/_galaxy/dev/lib/galaxy/config/schemas/uwsgi_schema.yml')
For comparison, in 21.09
path
points to the/tmp
directory:/tmp/tmpxj2eh451/lib/galaxy/webapps/uwsgi_schema.yml
(which is correct).To Reproduce
Run the test, then
git status
, see the modified file.Expected behavior
Should not be modified.
The text was updated successfully, but these errors were encountered: