Open VidmS opened 10 months ago
Here is the error when running "make presubmit":
`Verify that your local setup is working correctly by running the presubmit check source .venv/bin/activate && python3 presubmit.py =========================================================================================== test session starts ============================================================================================ platform linux -- Python 3.10.12, pytest-7.1.3, pluggy-1.3.0 -- /root/cispa/fuzzbench/.venv/bin/python3 cachedir: .pytest_cache rootdir: /root/cispa/fuzzbench, configfile: pytest.ini plugins: anyio-4.2.0, pyfakefs-5.0.0 collected 293 items / 3 errors
================================================================================================== ERRORS ================================================================================================== ____ ERROR collecting analysis/test_plotting.py ____ ImportError while importing test module '/root/cispa/fuzzbench/analysis/test_plotting.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: .venv/lib/python3.10/site-packages/_pytest/python.py:608: in _importtestmodule mod = import_path(self.path, mode=importmode, root=self.config.rootpath) .venv/lib/python3.10/site-packages/_pytest/pathlib.py:533: in import_path importlib.import_module(module_name) /usr/lib/python3.10/importlib/init.py:126: in import_module return _bootstrap._gcd_import(name[level:], package, level)
After installing Fuzzbench I went into an issue when I tried the "make presubmit" to test if the appication works. It hang up at some function corresponding to PyQt5. I was able to solve this issue by manually installing PyQt5 on my ubuntu via apt: "sudo apt-get install python3-pyqt5". After that all worked.