forked from caronc/apprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (40 loc) · 1.06 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
version: "3.3"
services:
test.py27:
build:
context: .
dockerfile: Dockerfile.py27
volumes:
- ./:/apprise
test.py35:
build:
context: .
dockerfile: Dockerfile.py35
volumes:
- ./:/apprise
test.py310:
build:
context: .
dockerfile: Dockerfile.py310
volumes:
- ./:/apprise
# Connect to web and create a new project using the manage script
# -> docker-compose run --rm test.py27 bash
# bin/apprise -
# bin/checkdone.sh
#
# Run a set of tests for just a certain section
# docker-compose run --rm test.py27 bin/test.sh fcm
#
# Or just run all the tsts in python 2.7
# docker-compose run --rm test.py27 bin/test.sh
#
# Want to run the whole test suite:
#
# [ -f .coverage ] && rm -f .coverage
# docker-compose run --rm test.py27 coverage run --append -m pytest -vv
# docker-compose run --rm test.py35 coverage run --append -m pytest -vv
# docker-compose run --rm test.py310 coverage run --append -m pytest -vv
#
# # Now produce a report
# docker-compose run --rm test.py310 coverage report --show-missing