forked from ruslux/validate-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (44 loc) · 1.54 KB
/
docker-compose.yml
File metadata and controls
50 lines (44 loc) · 1.54 KB
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
45
46
47
48
49
50
version: '2'
services:
python3.6_test:
build:
context: .
dockerfile: python3.6.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && coverage run --source='./validate_it/' -m pytest tests -vv && coverage combine && coverage report"
python3.7_test:
build:
context: .
dockerfile: python3.7.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && coverage run --source='./validate_it/' -m pytest tests -vv && coverage combine && coverage report"
pypy_test:
build:
context: .
dockerfile: pypy.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && coverage run --source='./validate_it/' -m pytest tests -vv && coverage combine && coverage report"
python3.6_benchmark:
build:
context: .
dockerfile: python3.6.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && /var/validate_it/run_benchmarks.sh"
python3.7_benchmark:
build:
context: .
dockerfile: python3.7.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && /var/validate_it/run_benchmarks.sh"
pypy_benchmark:
build:
context: .
dockerfile: pypy.dockerfile
volumes:
- "./:/var/validate_it/"
command: bash -c "find . -name "*.pyc" -type f -delete && /var/validate_it/run_benchmarks.sh"