test1/test_app.py
Vladislav 57f20bd89c
Some checks failed
CI Pipeline / lint (push) Successful in 6s
CI Pipeline / test (push) Successful in 6s
CI Pipeline / build (push) Failing after 5s
ya ustal
2025-05-22 23:21:05 +03:00

10 lines
234 B
Python

from app import app
import pytest # noqa: F401
def test_hello():
with app.test_client() as client:
response = client.get('/')
assert response.data == b'Hello, DevOps!'
assert response.status_code == 200