test pipeline 3
Some checks failed
CI Pipeline / lint (push) Failing after 7s
CI Pipeline / test (push) Successful in 7s
CI Pipeline / build (push) Has been skipped

This commit is contained in:
Vladislav 2025-05-21 22:10:18 +03:00
parent f3e38709d3
commit a829588b51

View File

@ -1,10 +1,10 @@
from app import app
import pytest
def test_hello():
with app.test_client() as client:
response = client.get('/')
assert response.data == b'Hello, DevOps!'
assert response.status_code == 200