I am trying to implement devops(CI/CD pipelines) on few of the python projects. All of the python projects are available in git repository.
I have implemented devops on each python projects, shown below the build pipeline for one of the project and it was working successfully.
Now i have brought all of the python projects in a single repository as multi module project as shown below.
Now I want to implement devops by crating CI/CD pipelines on each of the modules separately.
For that, I have created build(CI) pipelines which are similar as above, by modifying requirement.txt and set up.py files path as modulename/requirement.txt and modulename/setup.py.
setup.py file is failing by throwing an error, unable to find the package and the task for test is failing because of not able to find the packages which are having test resource files.
Below is the folder structure of python module.
Any idea how to resolve these errors?
Is there any reference for implementing devops(CI/CD) on python multi module projects?
Any leads much appreciated!