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 447 B

12345678910111213141516171819202122232425262728293031323334
  1. kind: pipeline
  2. type: docker
  3. name: 1
  4. platform:
  5. os: linux
  6. arch: amd64
  7. volumes:
  8. - name: cache
  9. host:
  10. path: /tmp/cache
  11. steps:
  12. - name: build
  13. image: python:3
  14. commands:
  15. - echo **start**
  16. - pip install -r requirements.txt
  17. - name: test
  18. image: python:3
  19. commands:
  20. - python run_excel_re.py
  21. - ls -lR test_Report
  22. volumes:
  23. - name: cache
  24. path: /drone/src
  25. trigger:
  26. branch:
  27. - master
  28. event:
  29. - push

生成接口测试报告

Contributors (2)