Update get responses and aadd tests
This commit is contained in:
parent
f66970b747
commit
dac5504754
3 changed files with 166 additions and 76 deletions
11
docker-compose.yml
Normal file
11
docker-compose.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
services:
|
||||
test-server:
|
||||
image: python:3.15-rc-slim
|
||||
command: >
|
||||
sh -c "mkdir mock_api &&
|
||||
echo '{\"message\":\"hello\"}' > mock_api/hello &&
|
||||
echo 'hello' > mock_api/hello-raw &&
|
||||
python -m http.server 8080 -d mock_api
|
||||
"
|
||||
ports:
|
||||
- "8080:8080"
|
||||
Loading…
Add table
Add a link
Reference in a new issue