-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (32 loc) · 839 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (32 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3.5'
services:
test_python3.7:
image: python:3.7
entrypoint: >
sh -c "cd /home && pip install -r ./requirements/dev.txt && pytest"
volumes:
- .:/home/
test_python3.8:
image: python:3.8
entrypoint: >
sh -c "cd /home && pip install -r ./requirements/dev.txt && pytest"
volumes:
- .:/home/
test_python3.9:
image: python:3.9
entrypoint: >
sh -c "cd /home && pip install -r ./requirements/dev.txt && pytest"
volumes:
- .:/home/
test_python3.10:
image: python:3.10
entrypoint: >
sh -c "cd /home && pip install -r ./requirements/dev.txt && pytest"
volumes:
- .:/home/
test_python3.11:
image: python:3.11
entrypoint: >
sh -c "cd /home && pip install -r ./requirements/dev.txt && pytest"
volumes:
- .:/home/