Getting Started with TestDeck
Learn how to configure TestDeck and start working with it. TestDeck allows you to detect the most unreliable test cases and take immediate action on them.
CircleCI
AVIATOR_API_TOKEN=av_live_xxxxxxxversion: 2.1
orbs:
aviator-upload-orb: aviator/[email protected]
jobs:
test:
docker:
- image: cimg/python:3.7
steps:
- checkout
- run:
name: Run tests and upload results
command: |
python -m pytest -vv --junitxml="test_results/output.xml"
- aviator-upload-orb/upload:
assets: "test_results/*.xml"
workflows:
test-and-upload:
jobs:
- testBuildkite
GitHub Actions
Last updated
Was this helpful?
