Start the test suite

This commit is contained in:
Thomas Sileo
2018-05-20 22:34:56 +02:00
parent 1c1816e102
commit a138bc0c48
2 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
import requests
def test_ping_homepage():
"""Ensure the homepage is accessible."""
resp = requests.get('http://localhost:5005')
resp.raise_for_status()
assert 'ci@localhost' in resp.text