I am new to use bitbucket, when I tried setting up the pipeline, the YAML file bitbucket-pipelines.yml gives an error saying ERROR: file or directory not found: tests/*
image: python:3.8
pipelines: default: - parallel: - step: name: Test caches: - pip script: - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - pip install pytest - pytest -v tests/* --junitxml=test-reports/report.xml - step: name: Lint code script: # Enforce style consistency across Python projects https://flake8.pycqa.org/en/latest/manpage.html - pip install flake8 - flake8 . --extend-exclude=dist,build --show-source --statistics
can anyone help me on this?
Hi @Test Account,
Which command gives you this error? I assume it's the following one?
pytest -v tests/* --junitxml=test-reports/report.xml
The error indicates that the tests folder does not exist in the repository. The pytest command expects to find files with tests in this directory.
If you have these files in a different directory in your repository, you'll need to replace tests/* in the command in your yml file with the path of the directory where the tests exist.
Please feel free to let me know how it goes and if you have any further questions.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.