mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-10 02:05:40 +00:00
0892db6fa7
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
37 lines
509 B
YAML
37 lines
509 B
YAML
dist: focal
|
|
language: python
|
|
|
|
python:
|
|
- 3.7
|
|
- 3.8
|
|
- 3.9
|
|
- 3.10
|
|
|
|
addons:
|
|
sonarcloud:
|
|
organization: sartography
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install celery
|
|
|
|
script:
|
|
- cd tests/SpiffWorkflow
|
|
- coverage run --source=SpiffWorkflow -m unittest discover -v . "*Test.py"
|
|
- coverage xml -i
|
|
- cd ../..
|
|
|
|
after_success:
|
|
- sonar-scanner
|
|
|
|
git:
|
|
depth: false
|
|
|
|
jobs:
|
|
include:
|
|
- python: 3.7
|
|
- python: 3.8
|
|
- python: 3.9
|
|
- python: 3.10
|
|
env: RUN_QUALITY_GATES=true
|