2022-07-15 22:40:27 +02:00
|
|
|
version: "3.3"
|
|
|
|
services:
|
2022-10-16 19:43:15 +02:00
|
|
|
test.py36:
|
2022-07-15 22:40:27 +02:00
|
|
|
build:
|
|
|
|
context: .
|
2022-10-08 20:05:28 +02:00
|
|
|
dockerfile: Dockerfile.py36
|
2022-07-15 22:40:27 +02:00
|
|
|
volumes:
|
|
|
|
- ./:/apprise
|
|
|
|
|
|
|
|
test.py310:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.py310
|
|
|
|
volumes:
|
|
|
|
- ./:/apprise
|
|
|
|
|
|
|
|
# Connect to web and create a new project using the manage script
|
2022-10-08 20:05:28 +02:00
|
|
|
# -> docker-compose run --rm test.py36 bash
|
2022-07-15 22:40:27 +02:00
|
|
|
# bin/apprise -
|
|
|
|
# bin/checkdone.sh
|
|
|
|
#
|
|
|
|
# Run a set of tests for just a certain section
|
2022-10-08 20:05:28 +02:00
|
|
|
# docker-compose run --rm test.py36 bin/test.sh fcm
|
2022-07-15 22:40:27 +02:00
|
|
|
#
|
2022-10-08 20:05:28 +02:00
|
|
|
# Or just run all the tests in python 3.6
|
|
|
|
# docker-compose run --rm test.py36 bin/test.sh
|
2022-07-15 22:40:27 +02:00
|
|
|
#
|
|
|
|
# Want to run the whole test suite:
|
|
|
|
#
|
|
|
|
# [ -f .coverage ] && rm -f .coverage
|
2022-10-08 20:05:28 +02:00
|
|
|
# docker-compose run --rm test.py36 coverage run --append -m pytest -vv
|
2022-07-15 22:40:27 +02:00
|
|
|
# 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
|