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
I'm not sure why it happens, it may be issue with my project. Shallow googling showed that maybe it is because pytest is unhappy with pip install which may leave some artifacts in the working directory. I solved the issue on my side changing both coe installation lines to
pip install -e .
pip install -e .[dev]
The text was updated successfully, but these errors were encountered:
In current
main
, codecov action installs the user's package withpip install .
. It looks like sometimes it may cause some issues withpytest
, see this failed action (corresponding workflow):https://github.com/lincc-frameworks/pandas-ts/actions/runs/7785027534/job/21226701366?pr=20
I'm not sure why it happens, it may be issue with my project. Shallow googling showed that maybe it is because
pytest
is unhappy withpip install
which may leave some artifacts in the working directory. I solved the issue on my side changing both coe installation lines topip install -e . pip install -e .[dev]
The text was updated successfully, but these errors were encountered: