CI/CD - 环境搭建(5) - 集成Automation

这里用一个简单spring boot例子,运行部署Job后自动触发Automaion job。

Automation

简单的用Python + Requests + Tox做个验证。

  • 自动化脚本:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    import requests

    r = requests.get('http://localhost:8000')

    print(r.status_code)
    print(r.text)

    assert r.status_code == 200
    assert 'Hello World!' in r.text
  • Job配置

  • 结果验证

唐胡璐 wechat
欢迎您扫一扫上面的微信公众号,订阅我的博客!
分享创造价值,您的支持将鼓励我继续前行!