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
Currently the jupytext --check or jupytext --pipe commands write the temporary Python files or notebooks to a temp file created with NamedTemporaryFile.
This file is located directly under \tmp\ and this breaks a test involving pytest==8.0.0rc1 (pytest-dev/pytest#11807).
We should be able to solve this by using TemporaryDirectory instead.
The text was updated successfully, but these errors were encountered:
Currently the
jupytext --check
orjupytext --pipe
commands write the temporary Python files or notebooks to a temp file created withNamedTemporaryFile
.This file is located directly under
\tmp\
and this breaks a test involvingpytest==8.0.0rc1
(pytest-dev/pytest#11807).We should be able to solve this by using
TemporaryDirectory
instead.The text was updated successfully, but these errors were encountered: