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?