-
-
Notifications
You must be signed in to change notification settings - Fork 421
/
docker-compose.yml
97 lines (86 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: "3.3"
services:
test.py39:
build:
context: .
dockerfile: test/docker/Dockerfile.py39
volumes:
- ./:/apprise
test.py310:
build:
context: .
dockerfile: test/docker/Dockerfile.py310
volumes:
- ./:/apprise
test.py311:
build:
context: .
dockerfile: test/docker/Dockerfile.py311
volumes:
- ./:/apprise
test.py312:
build:
context: .
dockerfile: test/docker/Dockerfile.py312
volumes:
- ./:/apprise
rpmbuild.el9:
build:
context: .
dockerfile: test/docker/Dockerfile.el9
volumes:
- ./:/apprise
rpmbuild.f37:
build:
context: .
dockerfile: test/docker/Dockerfile.f37
volumes:
- ./:/apprise
rpmbuild.f39:
build:
context: .
dockerfile: test/docker/Dockerfile.f39
volumes:
- ./:/apprise
rpmbuild.rawhide:
build:
context: .
dockerfile: test/docker/Dockerfile.rawhide
volumes:
- ./:/apprise
#
# Every Day testing
#
# Connect to web and create a new project using the manage script
# -> docker-compose run --rm test.py311 bash
# bin/apprise -
# bin/checkdone.sh
#
# Other Testing
#
# Connect to web and create a new project using the manage script
# -> docker-compose run --rm test.py311 bash
# bin/apprise -
# bin/checkdone.sh
#
# Run a set of tests for just a certain section
# docker-compose run --rm test.py311 bin/test.sh fcm
#
# Or just run all the tests in python 3.11
# docker-compose run --rm test.py311 bin/test.sh
#
# Want to run the whole test suite:
#
# [ -f .coverage ] && rm -f .coverage
# docker-compose run --rm test.py311 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
#
# RPM Building
#
# el9
# - docker-compose run --rm rpmbuild.el9 build-rpm.sh
# f39 (Fedora)
# - docker-compose run --rm rpmbuild.f39 build-rpm.sh