You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello!
i have the following step defined in my bitbucket-pipelines.yml file
- step: &tests
image: python:3.7.10-stretch
name: run pytest
deployment: staging
caches:
- pip
script:
- pip install -e .
- pip install pytest>=5 pytest-cov pytest-testdox pytest-mock pyfakefs
- pytest -v tests/ --junitxml=./test-results/junit.xml
and a custom pipeline to run this step only
tests:
- step: *tests
but when i run it, i see that report file is found and "uploaded" but then i have no feedback on the performed tests (and i see that "learn more about reports" link that may be related?)
Is it any option somewhere that i am missing or need to activate any other thing?
thanks for reading!
i got it, removing the "deployment" part eliminates the "Redeploy" button and then, the tests results are shown
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.