This is working well on Windows however on github actions for python-applicatioin i get the following error when running pytest:
DataCore.py:18: in <module>
from sqlcipher3 import dbapi2 as sqlcipher ## required for SQLite connection
sqlcipher3\__init__.py:[23](https://github.com/ChatterBugLtd/OEPR-Main/runs/7360105614?check_suite_focus=true#step:9:24): in <module>
from sqlcipher3.dbapi2 import *
sqlcipher3\dbapi2.py:[28](https://github.com/ChatterBugLtd/OEPR-Main/runs/7360105614?check_suite_focus=true#step:9:29): in <module>
from sqlcipher3._sqlite3 import *
E ImportError: DLL load failed while importing _sqlite3: The specified module could not be found.
I have uploaded all the relevant files from the DLLs directory and from the sqlcipher3 folder
This is working well on Windows however on github actions for python-applicatioin i get the following error when running pytest:
I have uploaded all the relevant files from the DLLs directory and from the sqlcipher3 folder
DLLs are copied in actions to the python DLLs directory:
and i have confirmed they are in there using the dir command.
I have not included pysqlcipher3 as part of requirements.txt as I figured having it in the root directory should work just as well?
Again this all works on my local machine and pytest completes successfully.