forked from vi3k6i5/flashtext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (38 loc) · 1.04 KB
/
docker-compose.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
version: '2.0'
services:
pytest-python2.7:
image: python:2.7
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app
pytest-python3.3:
image: python:3.3
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app
pytest-python3.5:
image: python:3.5
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app
pytest-python2.7-i386:
image: i386/python:2.7
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app
pytest-python3.3-i386:
image: i386/python:3.3
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app
pytest-python3.5-i386:
image: i386/python:3.5
command: bash -c "pip install pytest; python setup.py test"
volumes:
- .:/app
working_dir: /app