INWTlab/dbrequests

Failing Tests because of non-portable Pipfile

Closed this issue · 1 comments

Seems that the Pipfile.lock file is not portable between Python versions. For Python 3.7 and 3.6 we need

importlib-resources = "*"

in our Pipfile. When the Pipfile.lock is created with 3.8 this entry is missing. So Travis-CI has to create the Pipfile.lock with the appropriate Python version. A fix is simple. We remove the Pipfile.lock from the repository. I did this in #40 to make the tests run again.

@phainom if you see a different solution to this, let me know. Otherwise you can close this issue.

It now works for a while and we can live with it.