spiff-arena/.travis.yml
Jon Herron 0892db6fa7 Squashed 'SpiffWorkflow/' content from commit 63db3e4
git-subtree-dir: SpiffWorkflow
git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
2022-10-12 10:19:53 -04:00

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