8 lines
158 B
YAML
8 lines
158 B
YAML
ruby:
|
|
stage: test
|
|
script:
|
|
- pytest --junitxml report.xml yoink/tests/test_basic.py
|
|
artifacts:
|
|
when: always
|
|
reports:
|
|
junit: report.xml |