Skip to content

Commit 446d298

Browse files
committed
Rename app
1 parent 5989b03 commit 446d298

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: gunicorn chat.hello:app -w 4 -b 0.0.0.0:$PORT
1+
web: gunicorn app.hello:app -w 4 -b 0.0.0.0:$PORT
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
from setuptools import find_packages
55

6-
setup(name='chat',
6+
setup(name='ci-integration',
77
version='1.0',
8-
description='Python Distribution Utilities',
8+
description='Python Test',
99
author='Gilmar P Santos',
1010
packages=find_packages('.'),
1111
package_dir={'': '.'},

tests/test_hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
import context
33

4-
from chat.hello import app
4+
from app.hello import app
55

66
def test_empty():
77
with app.test_client() as c:

0 commit comments

Comments
 (0)