.drone.yml 171 B

1234567891011
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: test
  5. image: python:3.7.3
  6. commands:
  7. - pip install --upgrade pip
  8. - pip install -r requirements-dev.txt
  9. - pytest