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

123456789101112131415161718192021222324252627282930313233343536
  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. - pip install -r requirements.txt
  21. - python run_excel_re.py
  22. - ls -lR test_Report
  23. - cp -r test_Report/* /tmp/cache
  24. volumes:
  25. - name: cache
  26. path: /tmp/cache
  27. trigger:
  28. branch:
  29. - master
  30. event:
  31. - push

生成接口测试报告