.drone.yml 375 B

123456789101112131415161718
  1. ---
  2. pipeline:
  3. build:
  4. image: python:${PY_VERSION}
  5. commands:
  6. - mkdir -p /tmp/
  7. - touch /tmp/try # apparently needed
  8. - pip3 install -U wheel
  9. - pip3 install -U pip
  10. - pip3 install .
  11. - python3 setup.py install test
  12. matrix:
  13. PY_VERSION:
  14. - 3.5
  15. - 3.6
  16. - 3.7
  17. # slim and alpine variants do not work: error with mime types