You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.drone.yml 245 B

12345678910111213141516171819
  1. kind: pipeline
  2. type: docker
  3. name: first
  4. platform:
  5. os: linux
  6. arch: arm64
  7. steps:
  8. - name: pip
  9. image: python:3.10
  10. commands:
  11. - pip install -r requirements.txt
  12. - pytest
  13. trigger:
  14. branch:
  15. - master
  16. event:
  17. - push

生成接口测试报告

Contributors (2)