Circle CI does not work for the robot

Hi, I am trying to understand why the CI circle cannot start my robot platform. I am using the command. robot -d results -v inputEmail:circleci@xx.co tests/flow/investor_flow.robot to run the code on my local machine. I added the entire repo to the git hub and added a circle.yml file that looks like this.

test:
  override:
    - robot -d results -v inputEmail:circleci@aurorax.co  tests/flow/investor_flow.robot
general:
  artifacts:
    - "robot_results"

Here is the requirements.txt file

robotframework
robotframework-selenium2library
robotframework-requests

And finally, an image of the structure for my folders.

enter image description here

Here is the error generated by ci

robot -d results -v inputEmail:circleci@aurorax.co  tests/flow/investor_flow.robot
[ ERROR ] Parsing 'tests/flow/investor_flow.robot' failed: Data source does not exist.

Try --help for usage information.

robot -d results -v inputEmail:circleci@aurorax.co  tests/flow/investor_flow.robot returned exit code 252

Which is strange, since the same code works on my local machine.

+4
source share
1 answer

Change the path to uppercase. Tests/Flow/investor_flow.robot

+4
source

Source: https://habr.com/ru/post/1683454/


All Articles