Commit 98266690 authored by skysky's avatar skysky

new test_client

parent 19a91921
Pipeline #4521 passed with stage
......@@ -3,9 +3,10 @@ kind: pipeline
type: docker
name: default
steps:
- name: test
- name: build
image: python
commands:
- echo "Starting test now..."
- echo "Starting build now..."
- pip install -r requirements.txt
- echo "Starting test now..."
- pytest -vv
from app_web import app
def test_client():
response = app.test_client().get("/")
assert response.status_code == 200, "Connect error"
assert response.data.decode("utf-8") == "Hello, World!", "Error return sentence!"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment