When running the below command, an issue occurs 2025-09-30 08:03:03,207 - Main Runner - ERROR - Configuration file config.yaml not found.
$ docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ./results:/app/results \
-v ./src:/app/src \
swarmcg --language python --benchmark_name pycg --tool pycg
2025-09-30 08:03:03,207 - Main Runner - ERROR - Configuration file config.yaml not found.
Another minor issue. In src/main_runner.py (line 6), there is an import of an undefined and unused function:
from result_analysis.utils import run_results_analyzer
When running the below command, an issue occurs
2025-09-30 08:03:03,207 - Main Runner - ERROR - Configuration file config.yaml not found.$ docker run \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ./results:/app/results \ -v ./src:/app/src \ swarmcg --language python --benchmark_name pycg --tool pycg 2025-09-30 08:03:03,207 - Main Runner - ERROR - Configuration file config.yaml not found.Another minor issue. In src/main_runner.py (line 6), there is an import of an undefined and unused function: