Skip to content

Commit 1576c13

Browse files
committed
test
1 parent 78dacf7 commit 1576c13

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/first.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ jobs:
1616
python-version: "3.11"
1717
- name: Install requirements
1818
run: pip install -r requirements.txt
19-
- name: Run server
20-
run: python server.py
2119
- name: Run client
2220
run: python client.py

client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
print(responseone.text)
1111
else:
1212
print(f"{OK} Server is working correctly{RST}")
13-
print("::notice title=Healthcheck passed::Responce is adequate")
13+
print("::notice title=Healthcheck passed::Response is adequate")
1414
print(responseone.text)
1515

1616
responsetwo = requests.get('http://127.0.0.1:8080/user/usrnm')
@@ -20,7 +20,7 @@
2020
print(responsetwo.text)
2121
else:
2222
print(f"{OK} Server is working correctly{RST}")
23-
print("::notice title=Healthcheck passed::Responce is adequate")
23+
print("::notice title=Healthcheck passed::Response is adequate")
2424
print(responsetwo.text)
2525

2626
responsethree = requests.get('http://127.0.0.1:8080/search?q=python&length=17')
@@ -30,5 +30,5 @@
3030
print(responsethree.text)
3131
else:
3232
print(f"{OK} Server is working correctly{RST}")
33-
print("::notice title=Healthcheck passed::Responce is adequate")
33+
print("::notice title=Healthcheck passed::Response is adequate")
3434
print(responsethree.text)

0 commit comments

Comments
 (0)