ERROR: file or directory not found: tests/*

Test Account July 6, 2021

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?

1 answer

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 12, 2021

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events