1 language: python 2 python: 3 - "2.7" 4 - "3.5" 5 - "3.6" 6 - "3.7" 7 - "3.8" 8 # command to install dependencies 9 install: 10 - pip install -r requirements.txt 11 - pip install coverage 12 # command to run tests 13 script: 14 - cd tests && bash coverage.bash coverage 15